Skip to content

The release with the table specific WHERE and LIMIT

Compare
Choose a tag to compare
@ashleyhindle ashleyhindle released this 20 Jan 18:42
· 68 commits to master since this release

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"
}
...