We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In this release, Bindaas supports more cursor and collection methods.
Bindaas supports sort option.
{ "_operation" : "find" , "_operation_args" : { "query" : {'qty': {$gt: 50}} , "fields" :{ 'type' : 0 }, "skip" : 0, "limit" : 1000, "sort" : {'qty': -1, '_id':1} } }
Here, the results are first sorted in descending order of the property qty, and then ascending order of _id.
More information on sort can be found at the Mongo documentation.
Now Bindaas supports Distinct operation, as part of its query APIs.
{ "_operation" : "distinct" , "_operation_args" : { "field" : "item", "query" : {'qty': {$gt: 50}} } }
There was an error while loading. Please reload this page.