array contains filters
How can I filter a table row for an array containing a certain value? Something like
2 Replies
we have been considering adding a
q.contains
to the filter language. for now you can do the filter in javascript/typescript, which is almost equivalent at runtime -- the js runs close to the database so it's just as fast, and looks at the same amount of data as a built-in filter.
Awesome, thanks. A
contains
filter would make the filter language feel a bit more natural in this edge case. Thanks for your help.