Feature: shortcut to get subcollection for a document #89
Open
Description
The official firestore client gives us ability to get reference to a subcollection in this way:
var messageRef = db.collection('rooms').doc('roomA')
.collection('messages').doc('message1');
I couldn't find a equivalent way to do that with firestorter. Is it by design or is it something we can add? In that case I'm happy to send a PR