Skip to content

Instantly share code, notes, and snippets.

@HERRKIN
Created December 14, 2016 20:59
Show Gist options
  • Save HERRKIN/f9003cf6a49020ee299199a63feb1181 to your computer and use it in GitHub Desktop.
Save HERRKIN/f9003cf6a49020ee299199a63feb1181 to your computer and use it in GitHub Desktop.
import {Meteor} from 'meteor/meteor'
export default function (root, args, context) {
// if the user is not logged in throw an error
if (!context.userId) {
throw new Error('Unknown User (not logged in)')
}
// find the user using the userId from the context
return Meteor.users.findOne(context.userId)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment