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.
- Int!): SuccessResult ( :
- # Creates a new digital docket template.
- #
- # Arguments
- # template: The data to use to create the new 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*.
- Int!): SuccessResult ( :
- # Toggles the digital docket template's is_published flag as *false*.
- #
- # Arguments
- # id: The ID of the digital docket template to *unpublish*.
- Int!): SuccessResult ( :
- # Unflags a digital docket template as archived.
- #
- # Arguments
- # id: The ID of the digital docket template to restore.
- Int!): SuccessResult ( :
- # Updates a digital docket template.
- #
- # Arguments
- # template: The data to use to update.
- DigitalDocketTemplateUpdate!): SuccessResult ( :
- # Clones a digital docket template.
- #
- # Arguments
- # id: The id of the digital docket to duplicate.
- Int): SuccessResult ( :
- }