I have a mongo collection that contains data like:
{'email': '[email protected]'}
{'email': '[email protected]'}
{'email': '[email protected]'}
I want to get the the result of email that is [email protected] and [email protected], eg:
[{'email':'test1gmail.com'},{'email':'test2gmail.com'}]
is there a way I can do this with Pymongo's find?
I've tried using:
test.find({'email': '[email protected]', 'email':'[email protected]'})
But I think that's only getting the email [email protected] and not '[email protected]. If I do:
test.find({'email': '[email protected]', 'email':'[email protected]'})
That only gives me the results for [email protected].
Thought I would give $or a try based on Mongo DB query on multiple conditions:
test.find({"$or":[{'seller_email': '[email protected]', 'seller_email':'[email protected]'}]})
But that doesn't seem to work either.
I looked through the docs: https://pymongo.readthedocs.io/en/stable/tutorial.html, but I didn't see it.
I know you can do it from mongo's cli: MongoDB query with multiple conditions, but I need it to do it via pymongo.