fix: Include unmade recipes when filtering by last made (#7130)

This commit is contained in:
Michael Genson
2026-02-23 18:34:16 -06:00
committed by GitHub
parent 02d32c8905
commit 216ae8571c
3 changed files with 50 additions and 4 deletions

View File

@@ -79,8 +79,8 @@ This filter will find all foods that are not named "carrot": <br>
##### Keyword Filters
The API supports many SQL keywords, such as `IS NULL` and `IN`, as well as their negations (e.g. `IS NOT NULL` and `NOT IN`).
Here is an example of a filter that returns all recipes where the "last made" value is not null: <br>
`lastMade IS NOT NULL`
Here is an example of a filter that returns all shopping list items without a food: <br>
`foodId IS NULL`
This filter will find all recipes that don't start with the word "Test": <br>
`name NOT LIKE "Test%"`