collection.document failing with options
maininformer opened this issue · 2 comments
In the code attached, removing {graceful: true}
fixes the below error I am getting:
/app/node/node_modules/arangojs/lib/collection.js:774
return err ? callback(err) : callback(null, res.body);
^
TypeError: callback is not a function
at /app/node/node_modules/arangojs/lib/collection.js:774:38
at /app/node/node_modules/arangojs/lib/connection.js:215:15
at callback (/app/node/node_modules/arangojs/lib/util/request.node.js:52:9)
at IncomingMessage.<anonymous> (/app/node/node_modules/arangojs/lib/util/request.node.js:63:11)
at IncomingMessage.emit (node:events:525:35)
at endReadableNT (node:internal/streams/readable:1359:12)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
Node.js v18.16.1
2 const { Database } = require("arangojs");
3
4
- 5 const db = new Database({
2 6 url: "http://arango:8529",
2 7 databaseName: "default",
2 8 auth: { username: "root", password: "test" },
2 9 });
10
11 db.useBasicAuth("root", "test")
12
- 13 doc = {
| 14 _key: "testing113",
| 15 acorn: "no",
| 16 airhorn: "yes"
| 17 };
18
19 col = db.collection("preferences");
20
- 21 async function getOrCreateDocument(collection, doc){
| 22 const document = await collection.document(doc._key, {graceful: true})
- 23 if (document) {
2 24 return Promise.resolve({_rev: document._rev, ...doc})
2 25 } else {
2 26 return collection.save(doc)
2 27 }
| 28 }
29
- 30 (async ()=>{
2 31 const res = await getOrCreateDocument(col, doc)
2 32 console.log(res)
2 33 })()
This is fine until it is the first time making a document, then I have to handle the error myself, i.e. no need for {graceful: true}
. what is interesting is that the error appears, even if there are no documents, and even after collection.save
succeeds (document written in the datastore)`
Can you double-check which version of arangojs you are using, please? There should be no path lib/collection.js
in the current release package and the file collection.js
does not include a reference to callbacks.
I'm closing this for now as it looks like this is using an older version of the driver. Please feel free to reopen this issue if you can reproduce this with a more recent version.