SDK
SDK PHP v3.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.

mCreateOrReplaceDocument #

Create or replace the input Documents.


mCreateOrReplaceDocument(documents, [options], [callback]) #

Arguments Type Description
documents Document[] Array of Document to create or replace
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 or replaced.

Usage #

Copied to clipboard!
<?php
use \Kuzzle\Kuzzle;
use \Kuzzle\Document;
$kuzzle = new Kuzzle('localhost');
$dataCollection = $kuzzle->collection('collection', 'index');
$firstDocument = new Document($dataCollection, 'doc1', ['title' => 'foo', 'content' => 'bar']);
$secondDocument = new Document($dataCollection, 'doc2', ['title' => 'foo', 'content' => 'bar']);
try {
  $result = $dataCollection->mCreateOrReplaceDocument([$firstDocument, $secondDocument]);
}
catch (ErrorException $e) {
}

Callback response:

Copied to clipboard!
{
  "hits": [{ "first": "document" }, { "second": "document" }],
  "total": 2
}