I would like to execute a following query:
db.mycollection.find(HAS IMAGE URL)
What should be the correct syntax?
Sharing for future readers.
This query worked for us (query executed from MongoDB compass):
{ "fieldName": { "$nin": [ "", null ] } }