You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
filter="ARRAY_CONTAINS_ALL(color_coord, [7, 8])": This would match all entities where color_coord includes both 7 and 8.
filter="ARRAY_SUBSET_OF(color_coord, [7, 8, 9])": This would match entities where color_coord is a subset of [7, 8, 9], such as [7], [7, 8], or [9, 7], but not [7, 8, 9, 10].
Why is this needed?
enhance array filtering
Anything else?
No response
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
What would you like to be added?
Here’s how the filters would work:
filter="ARRAY_CONTAINS_ALL(color_coord, [7, 8])": This would match all entities where color_coord includes both 7 and 8.
filter="ARRAY_SUBSET_OF(color_coord, [7, 8, 9])": This would match entities where color_coord is a subset of [7, 8, 9], such as [7], [7, 8], or [9, 7], but not [7, 8, 9, 10].
Why is this needed?
enhance array filtering
Anything else?
No response
The text was updated successfully, but these errors were encountered: