Added 'not like' table filter, refs #750

This commit is contained in:
Simon Willison 2020-05-02 12:04:54 -07:00
commit b3aa5f4313
3 changed files with 8 additions and 0 deletions

View file

@ -216,6 +216,9 @@ You can filter the data returned by the table based on column values using a que
``?column__like=value``
Match rows with a LIKE clause, case insensitive and with ``%`` as the wildcard character.
``?column__notlike=value``
Match rows that do not match the provided LIKE clause.
``?column__glob=value``
Similar to LIKE but uses Unix wildcard syntax and is case sensitive.