-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Currently the user has to construct a Query object separately. The client should have a helper method to make this process more natural. Borrowing from typical ORM design it would be something like:
var query = client.query('widget').where({color: 'red'});
var widgets = query.fetch();
fetch would return an iterator from the blessed method created in #2
When es6 proxy objects happen, we might be able to do away with the need to explicitly call fetch.
Reactions are currently unavailable