Hi, How to filter out documents which have empty ...
# community-help
a
Hi, How to filter out documents which have empty value for available_children array? The following does not work.
Copy code
filter_by: "available_children:!=[]"
h
There is no way to filter on the count of elements present in an array right now. A workaround is to have a boolean field like
is_avaiable_children_empty
and update it accordingly.