``` export const currentUserQuery = gql` query c...
# prisma-whats-new
r
Copy code
export const currentUserQuery = gql`
  query currentUser {
    user {
      id
      name
    }
  }
a
user
is a special query field that returns the current user based on the token you send in the request
r
got it
thanks!
😎 1