Is there a graphql query I can run to get currentU...
# prisma-whats-new
y
Is there a graphql query I can run to get currentUser relying solely on the token? (on graphcool) somethign like:
Copy code
{
    currentUser {
        id email
    }
}
Never mind, got it!
Copy code
{
  user {
    id
  }
}
👌 2