Skip to content
Snippets Groups Projects
index.js 154 B
Newer Older
import gql from 'graphql-tag'

export const LOGIN_USER = gql`
  mutation($input: LoginUserInput) {
    loginUser(input: $input) {
      token
    }
  }
`