OBJECT
DigitalDocketMutation
Mutations that act on Digital Dockets.
link GraphQL Schema definition
- type DigitalDocketMutation {
- # Creates a new digital docket.
- #
- # Arguments
- # docket: The data to use for the creation
- DigitalDocketCreate!): SuccessResult ( :
- # Create a presigned url that users can upload digital docket attachments directly
- # from client side.
- #
- # Arguments
- # filename: The name of the attachment to create a presigned url
- # for
- String!): SignedUrl ( :
- # Deletes a digital docket. This action is irreversible.
- #
- # Arguments
- # id: The ID of the digital docket to delete.
- Int!): SuccessResult ( :
- # Merges a digital docket with its digital docket template's merge template.
- #
- # Arguments
- # id: The ID of the digital docket to merge.
- Int): MergeResult ( :
- # Emails a digital docket.
- #
- # Arguments
- # email: The email addresses of the contacts to send the
- # digitalDocket to
- DigitalDocketEmail): EmptySuccessResult ( :
- # Merges a current digital docket with its digital docket template's merge
- # template.
- #
- # Arguments
- # digitalDocketPreview: The current value of the digital docket
- # to merge.
- DigitalDocketPreview!): MergePreviewResult ( :
- }