You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Be sure to delete the 6 documents in the database before you import this dump so that you do not have documents with duplicate registration numbers!!!!
db.businesses.find({"raw.info": []}).count() --> should return 6.
db.businesses.remove({"raw.info": []}) ---> should return WriteResult({ "nRemoved" : 6 }).
db.businesses.find({"raw.info": []}).count() --> should return 0.
Import the data dump.
db.businesses.find({"raw.info": []}).count() --> should still return 0.
Get all documents that are missing raw info with the following query:
db.businesses.find({"raw.info": []}).count()
The text was updated successfully, but these errors were encountered: