Add more graphql support to Link
This commit is contained in:
parent
d7f8c87ccb
commit
60f6061d49
14 changed files with 251 additions and 159 deletions
10
apps/link/graphql/updateTicketMutation.ts
Normal file
10
apps/link/graphql/updateTicketMutation.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { gql } from "graphql-request";
|
||||
|
||||
export const updateTicketMutation = gql`
|
||||
mutation UpdateTicket($ticketId: ID!, $input: TicketUpdateInput!) {
|
||||
ticketUpdate(ticketId: $ticketId, input: $input) {
|
||||
ticket {
|
||||
id
|
||||
}
|
||||
}
|
||||
}`;
|
||||
Loading…
Add table
Add a link
Reference in a new issue