add arangodb integration

This commit is contained in:
sovlookup 2021-01-28 22:20:15 +08:00
parent 0e7e5920c6
commit 2f167d8245
1 changed files with 2 additions and 6 deletions

View File

@ -52,9 +52,7 @@ class ArangoDBIntegration {
async read(query) { async read(query) {
try { try {
const result = await this.client.query(query.sql) 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) { } catch (err) {
console.error("Error querying arangodb", err.message) console.error("Error querying arangodb", err.message)
throw err throw err
@ -69,9 +67,7 @@ class ArangoDBIntegration {
const result = await this.client.query( const result = await this.client.query(
aql`INSERT ${query.json} INTO ${clc} LET n = NEW RETURN NEW` 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) { } catch (err) {
console.error("Error querying arangodb", err.message) console.error("Error querying arangodb", err.message)
throw err throw err