Created
January 17, 2011 20:33
-
-
Save erichocean/783432 to your computer and use it in GitHub Desktop.
How to create a DAG of nested queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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