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.
  • emailAttachment(id: Int!, email: EmailSummary!): sendEmall
  • # Creates a new document.
  • #
  • # Arguments
  • # document: The data to use for the creation
  • create(document: DocumentCreate!): SuccessResult
  • # Deletes a document. This action is irreversible.
  • #
  • # Arguments
  • # id: The ID of the document to delete.
  • delete(id: Int!): SuccessResult
  • # Updates an existing document.
  • #
  • # Arguments
  • # document: The data to use for editing the document
  • update(document: DocumentUpdate!): SuccessResult
  • }