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
  • create(docket: 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
  • createSignedUrl(filename: String!): SignedUrl
  • # Deletes a digital docket. This action is irreversible.
  • #
  • # Arguments
  • # id: The ID of the digital docket to delete.
  • delete(id: Int!): SuccessResult
  • # Merges a digital docket with its digital docket template's merge template.
  • #
  • # Arguments
  • # id: The ID of the digital docket to merge.
  • merge(id: Int): MergeResult
  • # Emails a digital docket.
  • #
  • # Arguments
  • # email: The email addresses of the contacts to send the
  • # digitalDocket to
  • email(email: 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.
  • preview(digitalDocketPreview: DigitalDocketPreview!): MergePreviewResult
  • }