GraphQL OBJECT

WebFileSearchResultItem

Web file that matches the search parameters.

link Definition

  • type WebFileSearchResultItem {
  • # The size of the web file in bytes.
  • bytes: Int
  • # Category of the web file. CSS if IsCleverCss is true, PdfLogo otherwise.
  • category: WebFileCategoryEnum!
  • # The md5 checksum the web file.
  • checksum: String
  • # Client account that is assigned to the web file, if any.
  • client: Client
  • # The content type of the web file.
  • contentType: ContentType
  • # User who created the web file.
  • createdBy: UserAccount
  • # Date and time when the web file was created.
  • creationDate: DateTime!
  • # Link to file download.
  • downloadLink: String
  • # Name of web file.
  • fileName: String
  • # The id of the folder the web file belongs to.
  • webFolder: WebFileFolder
  • # Unique ID of the web file.
  • id: Int!
  • # The size of the web file in pixels (for images only).
  • imageSize: String
  • # Indicates whether the web file is clever css.
  • isCleverCss: Boolean!
  • # True when web file depends on language, false otherwise.
  • isLanguageDependent: Boolean!
  • # User who last edited the web file.
  • lastModifiedBy: UserAccount
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime!
  • # The path of the web file.
  • path: String
  • # List of catalogs items in which the web file is used.
  • referringCatalogItems: [CatalogItem]
  • # List of clients which use the web file.
  • referringClients: [Client]
  • # List of configurations in which the web file is used.
  • referringConfigurations: [Configuration]
  • # List of products in which the web file is used.
  • referringProducts: [Product]
  • # List of product selections in which the web file is used.
  • referringProductSelections: [ProductSelection]
  • # List of templates in which the web file is used.
  • referringTemplates: [Template]
  • # List of web files in which the web file is used.
  • referringWebFiles: [WebFile]
  • }