OBJECT

Document

Federation via Document Query

link GraphQL Schema definition

  • type Document implements Node {
  • # Document Category
  • category: DocumentCategory!
  • # User who created the document
  • createdBy: User
  • # Time this document was created. Note: Expressed in UTC ISO-8601 format
  • creationTime: DateTime!
  • # Optional description related to document
  • description: String
  • # Hyperlink to download document. Hyperlink will return raw document in response
  • # with optional Content-Type header
  • downloadLink: HyperLink
  • id: ID!
  • # User updated the document
  • lastModifiedBy: User
  • # Last modified time of the document
  • lastModifiedTime: DateTime
  • # Document name
  • name: String!
  • # Document size in bytes
  • sizeBytes: Long
  • # Document state
  • state: DocumentProcessingState!
  • # Tags of the document
  • tags: [Tag!]
  • # Type of the document like LiveOptics/ RVTool etc.
  • type: DocumentType
  • }