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 529f7fb commit 5a39558Copy full SHA for 5a39558
docs/Drivers/JS/Reference/Cursor.md
@@ -31,7 +31,7 @@ remaining result list.
31
**Examples**
32
33
```js
34
-const cursor = await db._query('FOR x IN 1..5 RETURN x');
+const cursor = await db.query('FOR x IN 1..5 RETURN x');
35
const result = await cursor.all()
36
// result is an array containing the entire query result
37
assert.deepEqual(result, [1, 2, 3, 4, 5]);
0 commit comments