INPUT_OBJECT

DocumentUpdate

A single document

link GraphQL Schema definition

  • input DocumentUpdate {
  • # The unique document ID.
  • id: Int!
  • # The document name.
  • name: String
  • # The type of this document.
  • type: Int
  • # The categorisation tags on the document.
  • tags: [IdObject]
  • # True if active, false if hidden.
  • is_public: Boolean
  • # The url of the document attachment, null if there is none.
  • attachment: String
  • }