I'm using Mongodb database and Compass tool to visualize my data. My collection called 'ProbCancer' looks like that:
probCancers: [
cases: [
{
case: {
bi: Number,
age: Number,
},
level: Number,
_id: false,
}
]
]
Since I have many objects in the cases
array, it's hard to analyze them. I want to only find objects that have level = -1. Is there any way to do this query in compass? Giving the query
parameter in db.probCancers.find(query);
could be helpful for me as well.