10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
export const createTicketMutation = `mutation CreateTicket($input: TicketCreateInput!) {
|
|
ticketCreate(input: $input) {
|
|
ticket {
|
|
id
|
|
priority {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}`;
|