i have this data from a MongoDB database, i want to return all the objects from the array "Books" and how to query for a specific book inside this array ?
{
  "_id": {
    "$oid": "5b193757fb6fc05a6fe42330"
  },
  "Books": [
    {
      "Me Talk Pretty One Day ": {
        "_id": 312
      }
    },
    {
      "One Hundred Years of Solitude ": {
        "_id": 123
      }
    }
  ]
}
 
    