This repository was archived by the owner on Aug 23, 2019. It is now read-only.

Description
Alternative 1: Add a $query method to $goKey and a $key method to $goQuery
var todos = $goKey('todos').$query(args);
var todos = $goQuery('todo's, args).$key('key')
Alternative 2: Add a $query method to model
var todos = $goKey('todos').$sync();
todos.$query(args);
var stuff = todos.$key('users').$query({ thing: false }).$key('whatever');