OBJECT
Documents
Mutations that act on Documents
link GraphQL Schema definition
- type Documents {
- # Emails document attachment.
- #
- # Arguments
- # id: The ID of the document.
- # email: The email information to send.
- Int!, : EmailSummary!): sendEmall ( :
- # Creates a new document.
- #
- # Arguments
- # document: The data to use for the creation
- DocumentCreate!): SuccessResult ( :
- # Deletes a document. This action is irreversible.
- #
- # Arguments
- # id: The ID of the document to delete.
- Int!): SuccessResult ( :
- # Updates an existing document.
- #
- # Arguments
- # document: The data to use for editing the document
- DocumentUpdate!): SuccessResult ( :
- }