import gql from 'graphql-tag';

export const CREATE_TICKET = gql`
  mutation CreateTicket($input: CreateTicketInput) {
    createTicket(input: $input) {
      ticket {
        id
        body
        contact {
          accountId
          email
          name
          phoneNumber
        }
      }
      error {
        message
        code
      }
    }
  }
`;
