I have country data that I store in constant as string and I have custom function to convert it into List<Country>. I need search feature, so I need to filter it using contains or LIKE operation, but I cannot find the operation.
How to filtering property inside list for search feature
Actions & Logic
currently I use equalTo operation but it doesn't meet the requirement because I should type the search field equal with the property value
Yes
2