apoc.mongodb.get
Procedure
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
Signature
apoc.mongodb.get(host :: STRING?, db :: STRING?, collection :: STRING?, query :: MAP?, compatibleValues = false :: BOOLEAN?, skip = 0 :: INTEGER?, limit = 0 :: INTEGER?, extractReferences = false :: BOOLEAN?, objectIdAsMap = true :: BOOLEAN?) :: (value :: MAP?)
Input parameters
| Name | Type | Default | 
|---|---|---|
host  | 
STRING?  | 
null  | 
db  | 
STRING?  | 
null  | 
collection  | 
STRING?  | 
null  | 
query  | 
MAP?  | 
null  | 
compatibleValues  | 
BOOLEAN?  | 
false  | 
skip  | 
INTEGER?  | 
0  | 
limit  | 
INTEGER?  | 
0  | 
extractReferences  | 
BOOLEAN?  | 
false  | 
objectIdAsMap  | 
BOOLEAN?  | 
true  |