Hello,
I've been browsing through the documentation, but I can't seem to figure out a way to perform a find on my mongodb collection using only a key. For example, let's suppose this is what's inside my collection
{ 'res1': 10 }
{ 'res2: 20 }
How can I query the collection using only the key 'res1', in order to get 10 ?
Thank you