Hi All,
I cannot figure out how to do "OR" filtering. It seems that the filtering is currently done using "AND" logic:
For Example:
This filter will find all records with a name containing "mark" AND a title containing "mr.". Is there a way to filter the records with a name containing "mark" OR a title containing "mr."?
Thanks in advance for any help!
I cannot figure out how to do "OR" filtering. It seems that the filtering is currently done using "AND" logic:
For Example:
var filter = [{ field: "name", operator: "contains", value: "mark"},
{ field: "title", operator: "contains", value: "mr."}];
This filter will find all records with a name containing "mark" AND a title containing "mr.". Is there a way to filter the records with a name containing "mark" OR a title containing "mr."?
Thanks in advance for any help!