1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

Add aggregate method. Push results.

This commit is contained in:
Mel O'Hagan 2022-10-03 20:08:47 +01:00
parent 6ef497992a
commit eaf6a5e40c

View file

@ -56,6 +56,9 @@ const SCHEMA: Integration = {
delete: {
type: QueryType.JSON,
},
aggregate: {
type: QueryType.FLOW,
},
},
extra: {
collection: {
@ -327,7 +330,7 @@ class MongoIntegration implements IntegrationBase {
await this.connect()
const db = this.client.db(this.config.db)
const collection = db.collection(query.extra.collection)
let response = {}
let response = []
for await (const doc of collection.aggregate(
query.steps.map(({ key, value }) => {
let temp: any = {}
@ -335,7 +338,7 @@ class MongoIntegration implements IntegrationBase {
return temp
})
)) {
response = doc
response.push(doc)
}
return response
} catch (err) {