I have another question on search: We have an attr...
# random
a
I have another question on search: We have an attribute called
{"city":"Berlin Chennai Pune Mumbai"}
and i want to apply a filter like:
filter_by=city:!Berlin
means, city not contains
Berlin
. Is it possible? If yes, please help.
k
Yes:
Copy code
filter_by=city:!= Berlin
a
@Kishore Nallan This is not
contains (like)
, this is
equals (=)
I am looking for
city
not contains
Berlin
k
So you want not contains of a word in a multi word string?
a
Yes You are right thanks
k
That's not possible at the moment. You can make the list of cities a string array and then use !=
🙌 1