How to view contents of _raix_push_notifications and _raix_push_app_tokens
See original GitHub issueAfter deploying meteor application with mup deploy I wanted to see the entries in _raix_push_app_tokens. But I receive this error:
> db._raix_push_app_tokens.find().fetch()
2015-06-09T06:47:23.951-0400 TypeError: Cannot call method 'find' of undefined
Push notifications work, I just want to inspect entries.
Issue Analytics
- State:
- Created 8 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Just incase anyone else comes across this issue you can use getCollection in MongoDb to view collection names starting with an underscore:
db.getCollection('_raix_push_app_tokens').find()
db.getCollection('_raix_push_notifications').find()
wow thanks a lot @ppryde