INPUT_OBJECT

DocumentUploadsCreate

Competency and Induction documents uploaded by fieldworkers.

link GraphQL Schema definition

  • input DocumentUploadsCreate {
  • # The specific Competency or Induction
  • object: IdObject!
  • # Expiry date of the document.
  • expiry_date: DateExpression
  • # Issue date of the document.
  • issue_date: DateExpression
  • # Expiry date of the document.
  • attachment: String!
  • # Comments about the uploaded document.
  • comments: String
  • # Approval status of the document.
  • is_approved: Int
  • # Date that the image got uploaded.
  • created_time: DateTime
  • # Person who approved the document.
  • approved_by: Int
  • # The email address of the person you are sending the document to
  • email_to: String
  • # Name of the document
  • document_name: String!
  • }