DocumentDeleteEntity<Void> |
ArangoCollection.deleteDocument(String key,
DocumentDeleteOptions options) |
Deletes the document with the given key from the collection.
|
<T> DocumentDeleteEntity<T> |
ArangoCollection.deleteDocument(String key,
DocumentDeleteOptions options,
Class<T> type) |
Deletes the document with the given key from the collection.
|
MultiDocumentEntity<DocumentDeleteEntity<RawData>> |
ArangoCollection.deleteDocuments(RawData values,
DocumentDeleteOptions options) |
Deletes multiple documents from the collection.
|
<T> MultiDocumentEntity<DocumentDeleteEntity<T>> |
ArangoCollection.deleteDocuments(Collection<?> values,
DocumentDeleteOptions options) |
Deletes multiple documents from the collection.
|
<T> MultiDocumentEntity<DocumentDeleteEntity<T>> |
ArangoCollection.deleteDocuments(Collection<?> values,
DocumentDeleteOptions options,
Class<T> type) |
Deletes multiple documents from the collection.
|