Suppose i have user collection and children collection.
Assume I have a specific user and children (which is the many side of user) has a field status of type string. I want to search for that child in user where status= "active".
Would the query be different if only one child in user can have status="active" at any time, although none of children may have status equal to "active" ?
Children are not embedded but reference in user.
This is my solution but does not look very efficient to me;
for (c : user.children) {
if (c.status == "active") {
child = c
}
}