SDK
SDK Dart Null Safety v3.x
2

exists #

Checks if a document exists.


Arguments #

Copied to clipboard!
Future<bool> exists(String index, String collection, String id)

Arguments Type Description
index
String
Index
collection
String
Collection
id
String
Document ID

Return #

Returns a boolean.

Usage #

Copied to clipboard!
final result = await kuzzle
  .document
  .exists('nyc-open-data', 'yellow-taxi', 'some-id');