update.graphql 212 B

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