When working with a query column, I have noticed that it doesn’t seem to allow the use of an array in the filtering.
E.g. I am trying to find rows in the source where a value is included in / contained in an array.
Is this a limitation?
When working with a query column, I have noticed that it doesn’t seem to allow the use of an array in the filtering.
E.g. I am trying to find rows in the source where a value is included in / contained in an array.
Is this a limitation?
Glide arrays in general do not support included in/is included in. To use that, you would first need to create a joined list from the array. You can create relations to arrays, so maybe you should be using a relation instead of a query?
Okay, I think I see what’s going on there.
The problem is that AssigneeID (RowID) is not an array value, so the contains/does not contain options are not available.
I think your workaround might be the only way to do it ![]()