I have a meteor.js application and I would like to take a look at what information is included in all client side collections. There are about 20 client side collections and I know that I can access them one by one and have them return their documents like so:
Meteor.myCollection.find().fetch()
But I'm wondering if there is a way to get all meteor.js collections that are on the client side and loop through them. Can anyone suggest a way to do this?