Hello everyone.
Can I search for a contact using OR operator in filter between two properties?
Search by a contact who has phone number OR email, for example
Hello everyone.
Can I search for a contact using OR operator in filter between two properties?
Search by a contact who has phone number OR email, for example
Yes. You can have up to three filter groups in a search. Filters within a filter use the AND operator. Filter groups use the OR operator. EG
filterGroup[
filter
filter
// these filters in this group us AND
],
This new filterGroup uses the OR operator and all filters within it use the AND operator
filterGroup[
filter
filter
]
Thank you!