Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Query Builder - Search multiple properties with AND/OR operator

Avatar

Level 3

How can I search with in multiple properties using OR operator. Below is what I need:

 

path=/test/12

1_property=property1

1_property.value=value1

          AND

 

2_property=property2

2_property.value=value2

          OR

3_property=property3

3_property.value=value3

 

1st property is mandatory while 2nd and 3rd is OR

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @troubleshooter3 

 

Your Query builder query should look like this

 

 

path=/test/12
1_property=property1
1_property.value=value1
group.p.or=true
group.2_property=property2
group.2_property.value=value2
group.3_property=property3
group.3_property.value=value3

 

 

if I am able to understand your requirment correctly. The above query should return path where property1 should be equal to value1 and either of the other two properties must be same as given value i.e property2=value2 or property3=value3.

 

Hope it helps!

Thanks!

Nupur

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi @troubleshooter3 

 

Your Query builder query should look like this

 

 

path=/test/12
1_property=property1
1_property.value=value1
group.p.or=true
group.2_property=property2
group.2_property.value=value2
group.3_property=property3
group.3_property.value=value3

 

 

if I am able to understand your requirment correctly. The above query should return path where property1 should be equal to value1 and either of the other two properties must be same as given value i.e property2=value2 or property3=value3.

 

Hope it helps!

Thanks!

Nupur