MongoCollection.find

Queries the collection for existing documents.

If no arguments are passed to find(), all documents of the collection will be returned.

  1. MongoCursor!(T, R, U) find(T query, U returnFieldSelector, QueryFlags flags, int num_skip, int num_docs_per_chunk)
    struct MongoCollection
    MongoCursor!(T, R, U)
    find
    (
    R = Bson
    T
    U
    )
  2. MongoCursor!(T, R, typeof(null)) find(T query)
  3. MongoCursor!(Bson, R, typeof(null)) find()

See Also

Meta