Database
I used Atlas a lot of the time: https://account.mongodb.com/ but there’s definitely a need to connect to the db via terminal to run queries/updates.
Example of grabbing dev data for a collection:
mongoexport --host rq-api-dev-shard-00-00-tlpkg.mongodb.net:27017,rq-api-dev-shard-00-01-tlpkg.mongodb.net:27017,rq-api-dev-shard-00-02-tlpkg.mongodb.net:27017 --ssl --username YOURUSERNAME --password YOURPW --authenticationDatabase admin --db rq-api --collection funeralhomes --type json --out=funeralhomesDEV.json
mongoimport --collection=funeralhomes --file=funeralhomesDEV.json --drop --db=rq-api