Hi,
I have a data array with multiple objects in Algolia index as below.
I need to perform a filtering which should do a exact match within these objects.
Ex:
(1)
avails.status:available AND avails.availablePlatform:2 AND avails.availableCountry:908
This returns true
as expected.
(2)
avails.status:available AND avails.availablePlatform:2 AND avails.availableCountry:144
This one also returns true
as Algolia has matched availableCountry from the second object.
But i need to return false
in this scenario. Does such a capability exist?, or are there other ways of approaching this problem that folks could point me to?
Thanks.