I am building a search service in angular2 to call Azure search. I did a post with this data:
{
count:true,
facets:["type", "status"],
queryType:"full",
search:"company && type:value1 || status:value2",
skip:0,
top:10
}
I want to bring all the data that has: type = value1 or status = value2 everything works great but the problem is the result: I am receiving only the results which have the type equals to value1 but not combined with the results that have the status equals to value2.