OBJECT

Collection

A collection of products and some styling and metainfo

link GraphQL Schema definition

  • type Collection {
  • # The products that make up this collection
  • products: [Product!]!
  • # Unique identifier for the collection
  • id: ID!
  • # The main title or name for the collection
  • title: String!
  • # HTML content describing the collection
  • contentHTML: String
  • # An image URL for the collection
  • imageURL: String
  • # The URL slug for the collection
  • slug: String!
  • # When the collection was created
  • createdAt: DateTimeTz!
  • # When the collection was updated
  • updatedAt: DateTimeTz!
  • }