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
I have a database with a hyphen in the name, and when I try to open the collections, an error is thrown because the query is trying to parse db.hyphenated-database.find({}). The fix for this is to change the query to be db['hyphenated-database'].find({}), which should probably be the default as it would be correct for any naming of databases.
I have a database with a hyphen in the name, and when I try to open the collections, an error is thrown because the query is trying to parse
db.hyphenated-database.find({})
. The fix for this is to change the query to bedb['hyphenated-database'].find({})
, which should probably be the default as it would be correct for any naming of databases.See: https://imgur.com/a/RFfWb
The text was updated successfully, but these errors were encountered: