1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

cannot return result directly fix it

This commit is contained in:
sovlookup 2021-01-28 22:35:41 +08:00
parent faaf4c6a27
commit 3f1797acd6

View file

@ -53,7 +53,8 @@ class ArangoDBIntegration {
try {
const result = await this.client.query(query.sql)
let rl = []
return result.forEach(r => rl.push(r))
await result.forEach(r => rl.push(r))
return rl
} catch (err) {
console.error("Error querying arangodb", err.message)
throw err
@ -69,7 +70,8 @@ class ArangoDBIntegration {
aql`INSERT ${query.json} INTO ${clc} LET n = NEW RETURN NEW`
)
let rl = []
return result.forEach(r => rl.push(r))
await result.forEach(r => rl.push(r))
return rl
} catch (err) {
console.error("Error querying arangodb", err.message)
throw err