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<DocumentCreateEntity<Void>> |
ArangoCollection.insertDocuments(Collection<?> values) |
Creates new documents from the given documents, unless there is already a document with the _key given.
|
MultiDocumentEntity<DocumentCreateEntity<Void>> |
ArangoCollection.insertDocuments(Collection<?> values,
DocumentCreateOptions options) |
Creates new documents from the given documents, unless there is already a document with the _key given.
|
<T> MultiDocumentEntity<DocumentCreateEntity<T>> |
ArangoCollection.insertDocuments(Collection<? extends T> values,
DocumentCreateOptions options,
Class<T> type) |
Creates new documents from the given documents, unless there is already a document with the _key given.
|