I have 2 indexes - People and Vehicles. Index "People" has a field "IsVisible" while index "Vehicles" does not have this property.
Now I want to search "Raymond" on these 2 indexes. However, the search only happens on "People" index for "IsVisible" field with value of true. Other records are irrelevant to this search. All records in "Vehicles" index are inclusive to the search.
I cannot use "Filter" on the search results as I need to return 100 records at all times.
I have tried all combination of "querystring", "match", "term", "bool" and cannot find the right query that giving the above condition.
Please advise on how to resolve this.
Regards