How to do search with OR operator between two properties

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

@harley-venturin

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

]

More details on the search the crm doc

Thank you!