We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4861573 commit c409c17Copy full SHA for c409c17
README.md
@@ -59,10 +59,10 @@ my_db.remove_aql_function("myfunctions::temperature::ctof")
59
## AQL Queries
60
```python
61
# Retrieve the execution plan without executing it
62
-my_db.explain_query("FOR doc IN my_col doc")
+my_db.explain_query("FOR doc IN my_col RETURN doc")
63
64
# Validate the AQL query without executing it
65
-my_db.validate_query("FOR doc IN my_col doc")
+my_db.validate_query("FOR doc IN my_col RETURN doc")
66
67
# Execute the AQL query and iterate through the AQL cursor
68
cursor = my_db.execute_query(
0 commit comments