OBJECT
DocketMutation
Mutations that act on Dockets.
link GraphQL Schema definition
- type DocketMutation {
- # Creates a new captured docket.
- #
- # Arguments
- # docket: The data to use for the creation
- DocketCreate!): SuccessResult ( :
- # Create a presigned url that users can upload docket images directly from client
- # side.
- #
- # Arguments
- # filename: The name of the docket image file to create a
- # presigned url for
- String!): SignedUrl ( :
- # Updates an existing captured docket.
- #
- # Arguments
- # docket: The data to use for editing the docket.
- DocketUpdate!): SuccessResult ( :
- # Deletes a docket. This action is irreversible.
- #
- # Arguments
- # id: The ID of the docket to delete.
- Int!): SuccessResult ( :
- }