SDK
SDK Dart v2.x
2

createOrReplace #

Creates a new document in the persistent data storage, or replaces its content if it already exists.


Arguments #

Copied to clipboard!
Future<Map<String, dynamic>> createOrReplace(
    String index,
    String collection,
    String id,
    Map<String, dynamic> document, {
    bool waitForRefresh = false,
  })
Arguments Type Description
index
String
Index
collection
String
Collection
id
String
Document ID
document
Map<String, dynamic>
Document content
waitForRefresh
bool

(false)
If set to true, Kuzzle will wait for the persistence layer to finish indexing

Return #

A Map<String, dynamic> which has the following properties:

Property Type Description
_source
Map<String, dynamic>
Document content
_id
String
ID of the document
_version
int
Version of the document in the persistent data storage

Usage #

Copied to clipboard!
final result = await kuzzle
  .document
  .createOrReplace('nyc-open-data', 'yellow-taxi', 'some-id', 
  {
    'firstname': 'John'
  });