Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Add support for mongo-style query operators #43

Open
12 tasks
will123195 opened this issue Mar 12, 2016 · 0 comments
Open
12 tasks

Add support for mongo-style query operators #43

will123195 opened this issue Mar 12, 2016 · 0 comments

Comments

@will123195
Copy link
Owner

  • $eq
  • $gt
  • $gte
  • $lt
  • $lte
  • $ne
  • $in
  • $nin
  • $or
  • $and
  • $not
  • $like $ilike
db.books.find({
  where: {
    id: { $in: [1, 2, 3] },
    price: { $or: [ { $gt: 25.00 }, { $lte: 75.00 } ] },
    author_id: { $not: 1 },
    year: 2016
  }
})
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant