Link ticket fixes #1
This commit is contained in:
parent
1443a61164
commit
d9ce2f5883
21 changed files with 617 additions and 583 deletions
12
apps/link/app/_graphql/updateTagsMutation.ts
Normal file
12
apps/link/app/_graphql/updateTagsMutation.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { gql } from "graphql-request";
|
||||
|
||||
export const updateTagsMutation = gql`
|
||||
mutation UpdateTags($objectId: ID!, $tags: [String!]!) {
|
||||
tagAssignmentUpdate(objectId: $objectId, tags: $tags) {
|
||||
success
|
||||
errors {
|
||||
message
|
||||
field
|
||||
}
|
||||
}
|
||||
}`;
|
||||
|
|
@ -5,6 +5,9 @@ mutation UpdateTicket($ticketId: ID!, $input: TicketUpdateInput!) {
|
|||
ticketUpdate(ticketId: $ticketId, input: $input) {
|
||||
ticket {
|
||||
id
|
||||
priority {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
}`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue