Title
y

Yao Hong Chun

09/13/2017, 8:43 AM
Is there a graphql query I can run to get currentUser relying solely on the token? (on graphcool) somethign like:
{
    currentUser {
        id email
    }
}
Never mind, got it!
{
  user {
    id
  }
}
👌 2