Use the RQL JSON Query API
masterThe RQL JSON API allows frontend developers to construct complex queries using a subset of MongoDB syntax. The top-level JSON object accepts the following optional fields:
offset: Integer $\ge 0$. Defaults to 0.limit: Integer $> 0$ and $\le$LimitMaxValue. Defaults toDefaultLimit.sort: An array of strings ([]string). Use+for ascending (default) and-for descending. Example:["name", "-age"].select: An array of strings ([]string) representing columns to include in the result.filter: An object defining theWHEREclause conditions.