| 123456789101112131415161718192021222324252627282930313233343536373839 | import gql from 'graphql-tag'const USER_LOGIN = gql`  mutation USER_LOGIN($email: String!, $password: String!) {    login(email: $email, password: $password) {      id      email      name    }  }`const USER_LOGOUT = gql`  mutation USER_LOGOUT {    logout {      id    }  }`const USER_SIGNUP = gql`  mutation USER_SIGNUP($email: String!, $password: String!, $name: String!) {    signup(email: $email, password: $password, name: $name) {      id    }  }`const CURRENT_USER = gql`  query {    me {      id      email      name    }  }`export { USER_LOGIN, USER_LOGOUT, USER_SIGNUP, CURRENT_USER }
 |