SDK
SDK Golang v2.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

MReplace #

Replaces multiple documents.

Returns a partial error (error code 206) if one or more documents can not be replaced.

Arguments #

MReplace(  index string,  collection string,  documents json.RawMessage,  options types.QueryOptions) (json.RawMessage, error)

ArgumentTypeDescription
index
string
Index name
collection
string
Collection name
documents
json.RawMessage
Document contents to update
options
types.QueryOptions
A struct containing query options

options #

Additional query options

OptionType
(default)
Description
Queuable
bool

(true)
If true, queues the request during downtime, until connected to Kuzzle again
Refresh
string

("")
If set to wait_for, waits for the change to be reflected for search (up to 1s)

Return #

Returns a json.RawMessage containing the updated documents.

Usage #

kuzzle.Document.Create(  "nyc-open-data",  "yellow-taxi",  "some-id",  json.RawMessage("{}"),  nil); kuzzle.Document.Create(  "nyc-open-data",  "yellow-taxi",  "some-other-id",  json.RawMessage("{}"),  nil); response, err := kuzzle.Document.MReplace(  "nyc-open-data",  "yellow-taxi",  json.RawMessage(`[  {  "_id": "some-id",  "body": { "capacity": 4 }  },  {  "_id": "some-other-id",  "body": { "capacity": 4 }  }  ]`),  nil) if err != nil {  log.Fatal(err) } else {  fmt.Println(string(response))  fmt.Println("Success") }