GraphQL OBJECT
WebFile
Reusable, localizable web file.
link Definition
- type WebFile {
- #   The size of the web file in bytes.
- : Int 
- #   Category of the web file. CSS if IsCleverCss is true, PdfLogo otherwise.
- : WebFileCategoryEnum 
- #   The md5 checksum the web file.
- : String 
- #   Client account that is assigned to the web file, if any.
- : Client 
- #   The content type of the web file.
- : ContentType 
- #   User who created the web file.
- : UserAccount 
- #   Date and time when the web file was created.
- : DateTime 
- #   Link to file download.
- : String 
- #   Name of web file.
- : String 
- #   The id of the folder the web file belongs to.
- : WebFileFolder 
- #   Unique ID of the web file.
- : Int! 
- #   The size of the web file in pixels (for images only).
- : String 
- #   Indicates whether the web file is clever css.
- : Boolean 
- #   True when web file depends on language, false otherwise.
- : Boolean 
- #   User who last edited the web file.
- : UserAccount 
- #   Date and time when the last edit occurred.
- : DateTime 
- #   The path of the web file.
- : String 
- #   List of catalogs items in which the web file is used.
- : [CatalogItem] 
- #   List of clients which use the web file.
- : [Client] 
- #   List of configurations in which the web file is used.
- : [Configuration] 
- #   List of products in which the web file is used.
- : [Product] 
- #   List of product selections in which the web file is used.
- : [ProductSelection] 
- #   List of templates in which the web file is used.
- : [Template] 
- #   List of web files in which the web file is used.
- : [WebFile] 
- }