OBJECT

DocumentUploadsMutation

Mutations that act on DocumentUploads.

link GraphQL Schema definition

  • type DocumentUploadsMutation {
  • # Adds a new compentency to a user
  • #
  • # Arguments
  • # documentUpload: The competency you are going to upload.
  • uploadCompetency(documentUpload: DocumentUploadsCreate): SuccessResult
  • # Adds a new induction to a user
  • #
  • # Arguments
  • # documentUpload: The induction you are going to upload.
  • uploadInduction(documentUpload: DocumentUploadsCreate): SuccessResult
  • # Create a presigned url that users can use to upload attachment images directly
  • # from client side.
  • #
  • # Arguments
  • # filename: The name of the attachment file.
  • createSignedAttachmentUrl(filename: String!): SignedUrl
  • }