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.replaceDocuments(Collection<?> 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<Void>> |
ArangoCollection.replaceDocuments(Collection<?> 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.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
ArangoCollection.replaceDocuments(Collection<? extends T> values,
DocumentReplaceOptions options,
Class<T> type) |
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.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.updateDocuments(Collection<?> values) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.updateDocuments(Collection<?> values,
DocumentUpdateOptions options) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
ArangoCollection.updateDocuments(Collection<?> values,
DocumentUpdateOptions options,
Class<T> returnType) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|