[ACTIONS] MongoDb - Aggregation, Update Many Documents, Find a Document #11834
Labels
action
New Action Request
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
triaged
For maintainers: This issue has been triaged by a Pipedream employee
Is there a specific app this action is for?
MongoDb
Please provide a link to the relevant API docs for the specific service / operation.
Aggregation
A thin wrapper around MongoDb aggregation for compounding several operations
db.collection('example').aggregate(pipeline)
https://www.mongodb.com/docs/drivers/node/current/fundamentals/aggregation/
Update Many Documents
db.collection('example').updateMany( filter, operation )
https://www.mongodb.com/docs/drivers/node/current/usage-examples/updateMany/
Find a Document
Find a document
Should be a thin wrapper around the
findOne
method on MongoDb Node.js:db.collection('example').findOne(filter, options)
API docs: https://www.mongodb.com/docs/drivers/node/current/usage-examples/findOne/
The text was updated successfully, but these errors were encountered: