find ( selector -- mdb-cursor/f seq )


Vocabulary
mongodb.driver

Inputs
selectora mdb-query or mdb-cursor


Outputs
mdb-cursor/fa cursor (if there are more results) or f
seqa sequences of objects


Word description
executes the given query

Examples
USING: mongodb.driver ; "db" "127.0.0.1" 27017 <mdb> [ "mycollection" H{ { "name" "Alfred" } } <query> find ] with-db


Definition

GENERIC: find ( selector -- mdb-cursor/f seq )


Methods