The release with the table specific WHERE and LIMIT
You can now restrict rows returned from tables with table specific conditions and limits:
...
"tableName": {
"$options": {
"where": "user_id > 5000 AND date_added < '2019-01-01'",
"limit": 40
},
"columnName": "@email"
}
...