I have a peer set up the collection's name to
UserSettings = new Mongo.Collection("user-settings");
When I tried to query in MongoDB console, I am not able to do
db.user-settings.find()
i get this error :-
ReferenceError: settings is not defined
How should I query a collection's name with dash?
Thanks