Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.27 KB

File metadata and controls

54 lines (36 loc) · 1.27 KB
code type title description
false
page
mcreateDocument
Collection:mcreateDocument

mCreateDocument

Create the input Documents.


mCreateDocument(documents, [options], [callback])

Arguments Type Description
documents Document[] Array of Document to create
options JSON Object Optional parameters
callback function Optional callback

Options

Option Type Description Default
queuable boolean Make this request queuable or not true

Return Value

Returns the Collection object to allow chaining.


Callback Response

Returns a JSON object containing the raw Kuzzle response. Can return a 206 partial error in cases where some documents could not be created.

Usage

<<< ./snippets/mcreate-document-1.js

Callback response:

{
  "hits": [{ "first": "document" }, { "second": "document" }],
  "total": 2
}