You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes some mistakes in the documentation. Also adds the information that for the `overwrite` flag at least ArangoDB with version
3.4.0 or higher is required.
Copy file name to clipboardExpand all lines: docs/Drivers/Java/Reference/Collection/DocumentManipulation.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -124,11 +124,11 @@ Creates a new document from the given document, unless there is already a docume
124
124
125
125
-**returnOld**: `Boolean`
126
126
127
-
Additionally return the complete old document under the attribute old in the result. Only available if the _overwrite_ option is used.
127
+
This options requires ArangoDB version 3.4.0 or higher. Additionally return the complete old document under the attribute old in the result. Only available if the _overwrite_ option is used.
128
128
129
129
-**overwrite**: `Boolean`
130
130
131
-
If set to true, the insert becomes a replace-insert. If a document with the same \_key already exists the new document is not rejected with unique constraint violated but will replace the old document.
131
+
This options requires ArangoDB version 3.4.0 or higher. If set to true, the insert becomes a replace-insert. If a document with the same \_key already exists the new document is not rejected with unique constraint violated but will replace the old document.
132
132
133
133
-**silent**: `Boolean`
134
134
@@ -172,11 +172,11 @@ Creates new documents from the given documents, unless there is already a docume
172
172
173
173
-**returnOld**: `Boolean`
174
174
175
-
Additionally return the complete old document under the attribute old in the result. Only available if the _overwrite_ option is used.
175
+
This options requires ArangoDB version 3.4.0 or higher. Additionally return the complete old document under the attribute old in the result. Only available if the _overwrite_ option is used.
176
176
177
177
-**overwrite**: `Boolean`
178
178
179
-
If set to true, the insert becomes a replace-insert. If a document with the same \_key already exists the new document is not rejected with unique constraint violated but will replace the old document.
179
+
This options requires ArangoDB version 3.4.0 or higher. If set to true, the insert becomes a replace-insert. If a document with the same \_key already exists the new document is not rejected with unique constraint violated but will replace the old document.
180
180
181
181
-**silent**: `Boolean`
182
182
@@ -233,7 +233,7 @@ Replaces the document with _key_ with the one in the body, provided there is suc
233
233
234
234
-**returnOld**: `Boolean`
235
235
236
-
Additionally return the complete old document under the attribute old in the result. Only available if the _overwrite_ option is used.
236
+
Additionally return the complete old document under the attribute old in the result.
237
237
238
238
-**silent**: `Boolean`
239
239
@@ -291,7 +291,7 @@ Replaces multiple documents in the specified collection with the ones in the val
291
291
292
292
-**returnOld**: `Boolean`
293
293
294
-
Additionally return the complete old document under the attribute old in the result. Only available if the _overwrite_ option is used.
294
+
Additionally return the complete old document under the attribute old in the result.
295
295
296
296
-**silent**: `Boolean`
297
297
@@ -352,7 +352,7 @@ Updates the document with _key_ with the one in the body, provided there is such
352
352
353
353
-**returnOld**: `Boolean`
354
354
355
-
Additionally return the complete old document under the attribute old in the result. Only available if the _overwrite_ option is used.
355
+
Additionally return the complete old document under the attribute old in the result.
356
356
357
357
-**silent**: `Boolean`
358
358
@@ -410,7 +410,7 @@ Updates multiple documents in the specified collection with the ones in the valu
410
410
411
411
-**returnOld**: `Boolean`
412
412
413
-
Additionally return the complete old document under the attribute old in the result. Only available if the _overwrite_ option is used.
413
+
Additionally return the complete old document under the attribute old in the result.
0 commit comments