I have the following mongo object:
{
  "_id" : ObjectId("530a40b72098b01011000002"),
  "content" : "hellp world",
  "comments" : [
    {
      "_id" : ObjectId("530a419f5dfb071912000003"),
      "data" : {
        ...
      }
    },
    {
      "_id" : ObjectId("530a419f5dfb071912000004"),
      "data" : {
        ...
      }
    },
  ],
}
Is there any way I can query for it by using an _id that is inside the comments array?
 
    