I would like to match all the people objects whose first name is either Paul OR last name is Paul. For this I tried using the below KQL query:
FirstName:"Paul" LastName:"Paul"
But then realized that when using different property restrictions, matches are based on an intersection of the property restrictions. I want the union of the property restrictions. How can I construct a KQL query?
Any pointers?