mogollar icon indicating copy to clipboard operation
mogollar copied to clipboard

Add sort, fields, skip and limit inputs

Open dashersw opened this issue 4 years ago • 0 comments

Queries are built up from different sections such as fields, skip, and limit values. These inputs and functionalities should be added to the app.

image

The app should also display the generated query as in the example;

db.watches.find({ age: { $gt: 21 } }, { name: 1, age: 1}).sort({ "_id": 1}).skip(90).limit(30)

dashersw avatar Aug 15 '20 17:08 dashersw