GraphQL OBJECT

WebFile

Reusable, localizable web file.

link Definition

  • type WebFile {
  • # Unique ID of the web file.
  • id: Int!
  • # Client account that is assigned to the web file, if any.
  • client: Client
  • # Date and time when the web file was created.
  • creationDate: DateTime
  • # User who created the web file.
  • createdBy: UserAccount!
  • # Name of web file.
  • fileName: String
  • # Link to file download.
  • downloadLink: String
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # User who last edited the web file.
  • lastModifiedBy: UserAccount!
  • # True when web file depends on language, false otherwise.
  • isLanguageDependent: Boolean
  • }