MultiDocumentEntity<DocumentDeleteEntity<Void>> |
ArangoCollection.deleteDocuments(RawData values) |
Deletes multiple documents from the collection.
|
MultiDocumentEntity<DocumentDeleteEntity<RawData>> |
ArangoCollection.deleteDocuments(RawData values,
DocumentDeleteOptions options) |
Deletes multiple documents from the collection.
|
DocumentImportEntity |
ArangoCollection.importDocuments(RawData values) |
Bulk imports the given values into the collection.
|
DocumentImportEntity |
ArangoCollection.importDocuments(RawData values,
DocumentImportOptions options) |
Bulk imports the given values into the collection.
|
MultiDocumentEntity<DocumentCreateEntity<Void>> |
ArangoCollection.insertDocuments(RawData values) |
Creates new documents from the given documents, unless there is already a document with the _key given.
|
MultiDocumentEntity<DocumentCreateEntity<RawData>> |
ArangoCollection.insertDocuments(RawData values,
DocumentCreateOptions options) |
Creates new documents from the given documents, unless there is already a document with the _key given.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.replaceDocuments(RawData values) |
Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are
specified by the _key attributes in the documents in values.
|
MultiDocumentEntity<DocumentUpdateEntity<RawData>> |
ArangoCollection.replaceDocuments(RawData values,
DocumentReplaceOptions options) |
Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are
specified by the _key attributes in the documents in values.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.updateDocuments(RawData values) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
MultiDocumentEntity<DocumentUpdateEntity<RawData>> |
ArangoCollection.updateDocuments(RawData values,
DocumentUpdateOptions options) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|