Skip to content

Commit 61ba99b

Browse files
authored
Document CRUD operations (#41)
* Document update * Document replace * Adding delete and has, plus updating get method. * Adding get_many method * Adjusting typing information - The Json serializer must be able to deal with sequences * Adding truncate and count operations * Adding find method * Adding insert_many method * Adding update_many method * Adding update_many method * Adding delete_many method * Adding update_match * Adding replace_match * Adding delete_match
1 parent 10ac7b7 commit 61ba99b

File tree

6 files changed

+1741
-28
lines changed

6 files changed

+1741
-28
lines changed

arangoasync/aql.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def response_handler(resp: Response) -> Cursor:
327327
if not resp.is_success:
328328
raise AQLQueryExecuteError(resp, request)
329329
if self._executor.context == "async":
330-
# We cannot have a cursor getting back async jobs
330+
# We cannot have a cursor giving back async jobs
331331
executor: NonAsyncExecutor = DefaultApiExecutor(
332332
self._executor.connection
333333
)

0 commit comments

Comments
 (0)