@@ -1761,14 +1761,6 @@ def insert_many(
1761
1761
successfully (returns document metadata) and which were not
1762
1762
(returns exception object).
1763
1763
1764
- .. note::
1765
-
1766
- In edge/vertex collections, this method does NOT provide the
1767
- transactional guarantees and validations that single insert
1768
- operation does for graphs. If these properties are required, see
1769
- :func:`arango.database.StandardDatabase.begin_batch_execution`
1770
- for an alternative approach.
1771
-
1772
1764
:param documents: List of new documents to insert. If they contain the
1773
1765
"_key" or "_id" fields, the values are used as the keys of the new
1774
1766
documents (auto-generated otherwise). Any "_rev" field is ignored.
@@ -1890,14 +1882,6 @@ def update_many(
1890
1882
(returns exception object). Alternatively, you can rely on
1891
1883
setting **raise_on_document_error** to True (defaults to False).
1892
1884
1893
- .. note::
1894
-
1895
- In edge/vertex collections, this method does NOT provide the
1896
- transactional guarantees and validations that single update
1897
- operation does for graphs. If these properties are required, see
1898
- :func:`arango.database.StandardDatabase.begin_batch_execution`
1899
- for an alternative approach.
1900
-
1901
1885
:param documents: Partial or full documents with the updated values.
1902
1886
They must contain the "_id" or "_key" fields.
1903
1887
:type documents: [dict]
@@ -2009,14 +1993,6 @@ def update_match(
2009
1993
) -> Result [int ]:
2010
1994
"""Update matching documents.
2011
1995
2012
- .. note::
2013
-
2014
- In edge/vertex collections, this method does NOT provide the
2015
- transactional guarantees and validations that single update
2016
- operation does for graphs. If these properties are required, see
2017
- :func:`arango.database.StandardDatabase.begin_batch_execution`
2018
- for an alternative approach.
2019
-
2020
1996
:param filters: Document filters.
2021
1997
:type filters: dict
2022
1998
:param body: Full or partial document body with the updates.
@@ -2099,14 +2075,6 @@ def replace_many(
2099
2075
successfully (returns document metadata) and which were not
2100
2076
(returns exception object).
2101
2077
2102
- .. note::
2103
-
2104
- In edge/vertex collections, this method does NOT provide the
2105
- transactional guarantees and validations that single replace
2106
- operation does for graphs. If these properties are required, see
2107
- :func:`arango.database.StandardDatabase.begin_batch_execution`
2108
- for an alternative approach.
2109
-
2110
2078
:param documents: New documents to replace the old ones with. They must
2111
2079
contain the "_id" or "_key" fields. Edge documents must also have
2112
2080
"_from" and "_to" fields.
@@ -2201,14 +2169,6 @@ def replace_match(
2201
2169
) -> Result [int ]:
2202
2170
"""Replace matching documents.
2203
2171
2204
- .. note::
2205
-
2206
- In edge/vertex collections, this method does NOT provide the
2207
- transactional guarantees and validations that single replace
2208
- operation does for graphs. If these properties are required, see
2209
- :func:`arango.database.StandardDatabase.begin_batch_execution`
2210
- for an alternative approach.
2211
-
2212
2172
:param filters: Document filters.
2213
2173
:type filters: dict
2214
2174
:param body: New document body.
@@ -2277,14 +2237,6 @@ def delete_many(
2277
2237
successfully (returns document metadata) and which were not
2278
2238
(returns exception object).
2279
2239
2280
- .. note::
2281
-
2282
- In edge/vertex collections, this method does NOT provide the
2283
- transactional guarantees and validations that single delete
2284
- operation does for graphs. If these properties are required, see
2285
- :func:`arango.database.StandardDatabase.begin_batch_execution`
2286
- for an alternative approach.
2287
-
2288
2240
:param documents: Document IDs, keys or bodies. Document bodies must
2289
2241
contain the "_id" or "_key" fields.
2290
2242
:type documents: [str | dict]
@@ -2368,14 +2320,6 @@ def delete_match(
2368
2320
) -> Result [int ]:
2369
2321
"""Delete matching documents.
2370
2322
2371
- .. note::
2372
-
2373
- In edge/vertex collections, this method does NOT provide the
2374
- transactional guarantees and validations that single delete
2375
- operation does for graphs. If these properties are required, see
2376
- :func:`arango.database.StandardDatabase.begin_batch_execution`
2377
- for an alternative approach.
2378
-
2379
2323
:param filters: Document filters.
2380
2324
:type filters: dict
2381
2325
:param limit: Max number of documents to delete. If the limit is lower
@@ -2442,14 +2386,6 @@ def import_bulk(
2442
2386
This method is faster than :func:`arango.collection.Collection.insert_many`
2443
2387
but does not return as many details.
2444
2388
2445
- .. note::
2446
-
2447
- In edge/vertex collections, this method does NOT provide the
2448
- transactional guarantees and validations that single insert
2449
- operation does for graphs. If these properties are required, see
2450
- :func:`arango.database.StandardDatabase.begin_batch_execution`
2451
- for an alternative approach.
2452
-
2453
2389
:param documents: List of new documents to insert. If they contain the
2454
2390
"_key" or "_id" fields, the values are used as the keys of the new
2455
2391
documents (auto-generated otherwise). Any "_rev" field is ignored.
0 commit comments