Put it in quotation marks and use the getCollection method. See Article.
Example To create the _foo collection and insert the document {a: 1}, use the following operation:
db.getCollection("_foo").insert( { a : 1 } )
To execute the query, use the find () method as follows:
db.getCollection("_foo").find()
source share