Created
May 13, 2026 12:22
-
-
Save sitefinitySDK/0ae8e97f6b56fd477592f3f9919097d0 to your computer and use it in GitHub Desktop.
11. Nested AND + OR — section-scoped with category alternatives
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Operator": "AND", | |
| "ChildFilters": [ | |
| { "FieldName": "ViewUrl", "Operator": "startswith", "FieldValue": "/products" }, | |
| { | |
| "Operator": "OR", | |
| "ChildFilters": [ | |
| { "FieldName": "Category", "Operator": "eq", "FieldValue": "Hardware" }, | |
| { "FieldName": "Category", "Operator": "eq", "FieldValue": "Accessories" } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment