From 356a8226d85447a10e9c0ea565210c9e391165f0 Mon Sep 17 00:00:00 2001 From: koryphaee <37508469+koryphaee@users.noreply.github.com> Date: Sat, 18 Jul 2026 13:15:39 +0200 Subject: [PATCH] Remove duplicate text --- docs-site/content/guide/tips-for-filtering.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs-site/content/guide/tips-for-filtering.md b/docs-site/content/guide/tips-for-filtering.md index 6a1f48b7..83a914bb 100644 --- a/docs-site/content/guide/tips-for-filtering.md +++ b/docs-site/content/guide/tips-for-filtering.md @@ -210,12 +210,6 @@ For example, to filter for products that are either made in the USA or Canada, a ``` This will return products that are either made in the USA or Canada, and are located in New York. -When using logical operators, you can use parentheses to group your filters. -For example, to filter for products that are either made in the USA or Canada, and are located in New York, you can use the following filter: - -```shell -(country:=USA || country:=Canada) && city:=New York -``` ### Operator Precedence