Skip to content

Instantly share code, notes, and snippets.

@HERRKIN
Last active January 13, 2017 15:15
Show Gist options
  • Save HERRKIN/9e334ef463e52fbb9f989e24f45691f9 to your computer and use it in GitHub Desktop.
Save HERRKIN/9e334ef463e52fbb9f989e24f45691f9 to your computer and use it in GitHub Desktop.
User resolver for the tutorial
import {Todos} from '../../../../lib/Collections'
export default {
User: {
todos (user) {
return Todos.find({owner: user._id}).fetch()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment