OBJECT

ThemeFile

A file uploaded to a theme

link GraphQL Schema definition

  • type ThemeFile {
  • # Unique identifier of the file
  • id: String!
  • # Name of the file
  • name: String!
  • # Original filename
  • filename: String!
  • # Type of file (css, js, image)
  • type: String!
  • # Size of the file in bytes
  • size: Int!
  • # URL to access the file
  • url: String!
  • # Is the file enabled?
  • enabled: Boolean!
  • # Display order
  • order: Int!
  • # Date when the file was uploaded
  • createdAt: String!
  • }

link Require by