Document in query operator

pull/82/head
Ben Schumacher 2022-09-29 20:46:29 +00:00
parent 934f64115e
commit 218fe921d9
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ P.S.: If you are a developer or have a technical knowledge to read a code and wo
* `>=` greater than or equals
* `=~` to match against a regular expression
* `!=~` does not match this regular expression
* `in` member of a list (e.g. ` prop in ["foo", "bar"]`)
Further, you can combine multiple of these with `and`. Example `prop =~ /something/ and prop != “something”`.