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

export const SIGNUP_USER = gql`
  mutation($input: UserInput) {
    createUser(input: $input) {
      id
      type
      username
      email
    }
  }
`