Skip to content

Instantly share code, notes, and snippets.

@erichocean
Created January 17, 2011 20:33
Show Gist options
  • Save erichocean/783432 to your computer and use it in GitHub Desktop.
Save erichocean/783432 to your computer and use it in GitHub Desktop.
How to create a DAG of nested queries
var query1 = SC.Query.create( /** omitted */ );
var query2 = SC.Query.create( /** omitted */ );
var joinQuery = SC.Query.create(
// omitted
).from(query1, query2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment