Given that I have many documents of the following structure:
{
"_id" : ObjectId("519c643bc76110cb6e794782"),
"item" : "1",
"packets" : {
"0" : "0",
"1" : "0",
"2" : "1",
...
}
}
How do I query for all documents with packets > 3 (irregardless of key value) for example?
Thanks.
How do I query for all documents with packets > 3 (irregardless of key value) for example?