From a93170036444befc7705e1ede0252aa59628c0a5 Mon Sep 17 00:00:00 2001 From: "Sinan Sonmez (Chaush)" <37421564+sinansonmez@users.noreply.github.com> Date: Mon, 22 Aug 2022 17:13:45 +0200 Subject: [PATCH] delete `in` operator --- website/πŸ”Œ Query.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/πŸ”Œ Query.md b/website/πŸ”Œ Query.md index 866e948..14033d1 100644 --- a/website/πŸ”Œ Query.md +++ b/website/πŸ”Œ Query.md @@ -30,7 +30,6 @@ 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` to specify multiple values in a `where` clause Further, you can combine multiple of these with `and`. Example `prop =~ /something/ and prop != β€œsomething”`.