Skip to content

Instantly share code, notes, and snippets.

@spion
Created July 13, 2016 19:02
Show Gist options
  • Save spion/5382c37bdaf772cc6a6f23d0833e07a8 to your computer and use it in GitHub Desktop.
Save spion/5382c37bdaf772cc6a6f23d0833e07a8 to your computer and use it in GitHub Desktop.
function getData() {
var respondent = Respondent.findById(respondentId)
var box = respondent.then(r => Box.findById(r.box_id))
var user = box.then(box => User.findById(box.owned_by))
return Promise.props({user, box, respondent})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment