OBJECT

DigitalDocketTemplateMutation

Mutations that act on Digital Docket Templates.

link GraphQL Schema definition

  • type DigitalDocketTemplateMutation {
  • # Marks a digital docket template as archived.
  • #
  • # Arguments
  • # id: The ID of the digital docket template to archive.
  • archive(id: Int!): SuccessResult
  • # Creates a new digital docket template.
  • #
  • # Arguments
  • # template: The data to use to create the new template.
  • create(template: DigitalDocketTemplateCreate!): SuccessResult
  • # Toggles the digital docket template's is_published flag as *true*.
  • #
  • # Arguments
  • # id: The ID of the digital docket template to *publish*.
  • publish(id: Int!): SuccessResult
  • # Toggles the digital docket template's is_published flag as *false*.
  • #
  • # Arguments
  • # id: The ID of the digital docket template to *unpublish*.
  • unpublish(id: Int!): SuccessResult
  • # Unflags a digital docket template as archived.
  • #
  • # Arguments
  • # id: The ID of the digital docket template to restore.
  • restore(id: Int!): SuccessResult
  • # Updates a digital docket template.
  • #
  • # Arguments
  • # template: The data to use to update.
  • update(template: DigitalDocketTemplateUpdate!): SuccessResult
  • # Clones a digital docket template.
  • #
  • # Arguments
  • # id: The id of the digital docket to duplicate.
  • copy(id: Int): SuccessResult
  • }