customerUpdate.graphql 236 B

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