System Information
- Strapi Version: v3.6.6
we have parent child relation in strapi. we want to filter parent records which does not have any children or empty array e.g.
[
{
"id": 1,
"title": "title1",
"children": [
{
"id": 1,
"name": "child1"
}
]
},
{
"id": 2,
"title": "title2",
"children": []
}
]
we want to fetch record where “children”: [].
We tried
/parent?children=null
/parent?children_eq=null
/parent?children_len=0
but all these URLs are returning blank array [].