mongo query find code example
Example 1: mongodb find with gt
{field: {$gt: value} }
Example 2: mongodb find element in array
db.yourCollection.find( { array: "element" } )
Example 3: find by $in mongo
db.persons.find( { name: { $in: [ "John", "David", "Sarah" ] } } )