MultiDocumentEntity<DocumentDeleteEntity<Void>> |
C8Collection.deleteDocuments(Collection<?> values) |
Deletes multiple documents from the collection.
|
<T> MultiDocumentEntity<DocumentDeleteEntity<T>> |
C8Collection.deleteDocuments(Collection<?> values,
Class<T> type,
DocumentDeleteOptions options) |
Deletes multiple documents from the collection.
|
<T> MultiDocumentEntity<T> |
C8Collection.getDocuments(Collection<String> keys,
Class<T> type) |
Retrieves multiple documents with the given _key from the collection.
|
<T> MultiDocumentEntity<T> |
C8Collection.getDocuments(Collection<String> keys,
Class<T> type,
DocumentReadOptions options) |
Retrieves multiple documents with the given _key from the collection.
|
<T> MultiDocumentEntity<DocumentCreateEntity<T>> |
C8Collection.insertDocuments(Collection<T> values) |
Creates new documents from the given documents, unless there is already a
document with the _key given.
|
<T> MultiDocumentEntity<DocumentCreateEntity<T>> |
C8Collection.insertDocuments(Collection<T> values,
DocumentCreateOptions options) |
Creates new documents from the given documents, unless there is already a
document with the _key given.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
C8Collection.replaceDocuments(Collection<T> 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.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
C8Collection.replaceDocuments(Collection<T> 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>> |
C8Collection.updateDocuments(Collection<T> values) |
Partially updates documents, the documents to update are specified by the
_key attributes in the objects on values.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
C8Collection.updateDocuments(Collection<T> values,
DocumentUpdateOptions options) |
Partially updates documents, the documents to update are specified by the
_key attributes in the objects on values.
|