delete #
Deletes a document.
Arguments #
public CompletableFuture<ConcurrentHashMap<String, Object>> delete(
final String index,
final String collection,
final String id)
throws NotConnectedException, InternalException
public CompletableFuture<ConcurrentHashMap<String, Object>> delete(
final String index,
final String collection,
final String id,
final Boolean waitForRefresh)
throws NotConnectedException, InternalException
Arguments | Type | Description |
---|---|---|
index | String | Index |
collection | String | Collection |
id | String | Document ID |
waitForRefresh | Boolean(optional) | If set to true , Kuzzle will wait for the persistence layer to finish indexing |
Return #
A ConcurrentHashMap
which has the following property:
Property | Type | Description |
---|---|---|
_id | String | ID of the deleted document |
Usage #
kuzzle.getDocumentController().delete("nyc-open-data", "yellow-taxi", "some-id")
.get();
Edit this page on Github(opens new window)