Skip to content

Instantly share code, notes, and snippets.

@kenrick
Created January 15, 2015 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenrick/b1b1782018cfa55c58b8 to your computer and use it in GitHub Desktop.
Save kenrick/b1b1782018cfa55c58b8 to your computer and use it in GitHub Desktop.
function* () {
var user = yield User.find(10);
var posts = yield Posts.where({ user_id: user.id });
console.log(user, posts);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment