INPUT_OBJECT

CreateTicketReplyMutationInput

The input object that defines the fields for the createTicketReply mutation.

link GraphQL Schema definition

  • input CreateTicketReplyMutationInput {
  • # The ID of a `Ticket`.
  • ticket_id: Int64Bit!
  • # The body.
  • body: Text!
  • # Whether or not the reply was incoming (from an external party) or outgoing (from
  • # a Sonar `User`.)
  • incoming: Boolean
  • # The author.
  • author: Text
  • # The email address of the author.
  • author_email: EmailAddress
  • # A list of file IDs to be associated with this object. These must first have been
  • # uploaded to the /files endpoint and must be currently unassociated.
  • files: [AssociateFileMutationInput]
  • }

link Require by