Hello,
Is substring look up possible for array of strings?
Query.contains('product_names', [chair]),
this only works if I have the exact item name. cha instead of chair does not work.
product_names is a an array: ['chair', 'door', 'table']
TL;DR
Developers want to know if substring lookup is possible for array elements. The current query only works with exact item names, not substrings. The array `product_names` is `['chair', 'door', 'table']`.