From 218fe921d90cf8589fda3441a13de2e1d31e2a78 Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Thu, 29 Sep 2022 20:46:29 +0000 Subject: [PATCH] Document in query operator --- website/πŸ”Œ Query.md | 1 + 1 file changed, 1 insertion(+) diff --git a/website/πŸ”Œ Query.md b/website/πŸ”Œ Query.md index 14033d1..d305002 100644 --- a/website/πŸ”Œ Query.md +++ b/website/πŸ”Œ Query.md @@ -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”`.