We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a really nice and convenient library. It would be great if aggregation was also implemented.
The text was updated successfully, but these errors were encountered:
Glad you like it! Do you have an example how you'd like to see this implemented in Sift?
Sorry, something went wrong.
For example the Perform a Count example on this page.
db.articles.aggregate( [ { $match: { $or: [ { score: { $gt: 70, $lt: 90 } }, { views: { $gte: 1000 } } ] } }, { $group: { _id: null, count: { $sum: 1 } } } ] );
https://github.com/kethan/uqry
Try this under 1kb with aggregation
@kethan wow nice, thanks!
No branches or pull requests
This is a really nice and convenient library. It would be great if aggregation was also implemented.
The text was updated successfully, but these errors were encountered: