Skip to content

Commit c409c17

Browse files
author
Joohwan Oh
committed
Update README.md
1 parent 4861573 commit c409c17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ my_db.remove_aql_function("myfunctions::temperature::ctof")
5959
## AQL Queries
6060
```python
6161
# Retrieve the execution plan without executing it
62-
my_db.explain_query("FOR doc IN my_col doc")
62+
my_db.explain_query("FOR doc IN my_col RETURN doc")
6363

6464
# Validate the AQL query without executing it
65-
my_db.validate_query("FOR doc IN my_col doc")
65+
my_db.validate_query("FOR doc IN my_col RETURN doc")
6666

6767
# Execute the AQL query and iterate through the AQL cursor
6868
cursor = my_db.execute_query(

0 commit comments

Comments
 (0)