If I have a structure
{
   "__v": 0,
   "email": "[email protected]",
   "password": "dfsdfsdf",
   "_id": "5864a681c02817571564ddeb",
   "tokens": [
      {
         "access": "auth",
         "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.dfsdfsdgsdg3423h4jhj23.7oKGPLMAnSBMYRFTCj-xLwfqIx4q3ZPorM0CNxT3OYA",
         "_id": "5864a681c02817571564ddec"
      }
   ]
}
I want the token inside of tokens(array) how do I do it in JS?
User.find({
        [WHAT GOES HERE?]
    }).then((result) => {return result;}).catch((e) => {return "error"})
User is the mongoose model of the schema I've created.
What goes in the find query part?