OBJECT

Document

A single document

link GraphQL Schema definition

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