UNPKG

portal-www

Version:

Nova Portal Website. Based on Next starter by Ueno

23 lines (21 loc) 365 B
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 } } } `;