Skip to content

Commit 5bdc7a5

Browse files
committed
Removing note that is no longer relevant.
1 parent f27348d commit 5bdc7a5

File tree

1 file changed

+0
-64
lines changed

1 file changed

+0
-64
lines changed

arango/collection.py

-64
Original file line numberDiff line numberDiff line change
@@ -1761,14 +1761,6 @@ def insert_many(
17611761
successfully (returns document metadata) and which were not
17621762
(returns exception object).
17631763
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-
17721764
:param documents: List of new documents to insert. If they contain the
17731765
"_key" or "_id" fields, the values are used as the keys of the new
17741766
documents (auto-generated otherwise). Any "_rev" field is ignored.
@@ -1890,14 +1882,6 @@ def update_many(
18901882
(returns exception object). Alternatively, you can rely on
18911883
setting **raise_on_document_error** to True (defaults to False).
18921884
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-
19011885
:param documents: Partial or full documents with the updated values.
19021886
They must contain the "_id" or "_key" fields.
19031887
:type documents: [dict]
@@ -2009,14 +1993,6 @@ def update_match(
20091993
) -> Result[int]:
20101994
"""Update matching documents.
20111995
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-
20201996
:param filters: Document filters.
20211997
:type filters: dict
20221998
:param body: Full or partial document body with the updates.
@@ -2099,14 +2075,6 @@ def replace_many(
20992075
successfully (returns document metadata) and which were not
21002076
(returns exception object).
21012077
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-
21102078
:param documents: New documents to replace the old ones with. They must
21112079
contain the "_id" or "_key" fields. Edge documents must also have
21122080
"_from" and "_to" fields.
@@ -2201,14 +2169,6 @@ def replace_match(
22012169
) -> Result[int]:
22022170
"""Replace matching documents.
22032171
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-
22122172
:param filters: Document filters.
22132173
:type filters: dict
22142174
:param body: New document body.
@@ -2277,14 +2237,6 @@ def delete_many(
22772237
successfully (returns document metadata) and which were not
22782238
(returns exception object).
22792239
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-
22882240
:param documents: Document IDs, keys or bodies. Document bodies must
22892241
contain the "_id" or "_key" fields.
22902242
:type documents: [str | dict]
@@ -2368,14 +2320,6 @@ def delete_match(
23682320
) -> Result[int]:
23692321
"""Delete matching documents.
23702322
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-
23792323
:param filters: Document filters.
23802324
:type filters: dict
23812325
:param limit: Max number of documents to delete. If the limit is lower
@@ -2442,14 +2386,6 @@ def import_bulk(
24422386
This method is faster than :func:`arango.collection.Collection.insert_many`
24432387
but does not return as many details.
24442388
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-
24532389
:param documents: List of new documents to insert. If they contain the
24542390
"_key" or "_id" fields, the values are used as the keys of the new
24552391
documents (auto-generated otherwise). Any "_rev" field is ignored.

0 commit comments

Comments
 (0)