OBJECT
ThemeFile
A file uploaded to a theme
link GraphQL Schema definition
- type ThemeFile {
- # Unique identifier of the file
- : String!
- # Name of the file
- : String!
- # Original filename
- : String!
- # Type of file (css, js, image)
- : String!
- # Size of the file in bytes
- : Int!
- # URL to access the file
- : String!
- # Is the file enabled?
- : Boolean!
- # Display order
- : Int!
- # Date when the file was uploaded
- : String!
- }