find method

BagelDBRequest find(
  1. Object mongoQueryObj
)

Use find to use a mongodb query format

Implementation

BagelDBRequest find(Object mongoQueryObj) {
  this._rawMongoQuery = json.encode(mongoQueryObj);
  return this;
}