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 23336a8 commit bd2bc20Copy full SHA for bd2bc20
README.md
@@ -69,12 +69,12 @@ Modern JavaScript/TypeScript with async/await:
69
const { Database, aql } = require("arangojs");
70
71
const db = new Database();
72
-const pokemons = db.collection("my-pokemons");
+const Pokemons = db.collection("my-pokemons");
73
74
async function main() {
75
try {
76
const pokemons = await db.query(aql`
77
- FOR pokemon IN ${pokemons}
+ FOR pokemon IN ${Pokemons}
78
FILTER pokemon.type == "fire"
79
RETURN pokemon
80
`);
0 commit comments