apoc.mongodb
Qualified Name | Type | Release |
---|---|---|
apoc.mongodb.count(host-or-key,db,collection,query) yield value - perform a find operation on mongodb collection |
Procedure |
APOC Full |
apoc.mongodb.delete(host-or-key,db,collection,query) - delete the given documents from the mongodb collection and returns the number of affected documents |
Procedure |
APOC Full |
apoc.mongodb.find(host-or-key,db,collection,query,projection,sort,[compatibleValues=false|true],skip-or-null,limit-or-null,[extractReferences=false|true],[objectIdAsMap=true|false]) yield value - perform a find,project,sort operation on mongodb collection |
Procedure |
APOC Full |
apoc.mongodb.first(host-or-key,db,collection,query,[compatibleValues=false|true],[extractReferences=false|true],[objectIdAsMap=true|false]) yield value - perform a first operation on mongodb collection |
Procedure |
APOC Full |
apoc.mongodb.get(host-or-key,db,collection,query,[compatibleValues=false|true],skip-or-null,limit-or-null,[extractReferences=false|true],[objectIdAsMap=true|false]) yield value - perform a find operation on mongodb collection |
Procedure |
APOC Full |
apoc.mongodb.get.byObjectId(hostOrKey, db, collection, objectIdValue, config(default:{})) - get the document by Object id value |
Procedure |
APOC Full |
apoc.mongodb.insert(host-or-key,db,collection,documents) - inserts the given documents into the mongodb collection |
Procedure |
APOC Full |
apoc.mongodb.update(host-or-key,db,collection,query,update) - updates the given documents from the mongodb collection and returns the number of affected documents |
Procedure |
APOC Full |