update.graphql 257 B

1234567891011121314
  1. mutation ticketUpdate(
  2. $ticketId: ID!
  3. $input: TicketUpdateInput!
  4. $meta: TicketUpdateMetaInput!
  5. ) {
  6. ticketUpdate(ticketId: $ticketId, input: $input, meta: $meta) {
  7. ticket {
  8. ...ticketAttributes
  9. }
  10. errors {
  11. ...errors
  12. }
  13. }
  14. }