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].
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