GraphQL OBJECT

Template

Template you define or design for your client account, recommendation, or catalog.

link Definition

  • type Template {
  • # Unique ID of the template.
  • id: Int
  • # Name of the template.
  • name: String
  • # Description of the template.
  • description: String
  • # Localized template string.
  • data: [LocalizedString]
  • # Client who uses the template.
  • client: Client
  • # URL pointing to a small preview of the template.
  • smallPreviewURL: String @deprecated( reason: "Incorrect casing, please use smallPreviewUrl instead" )
  • # URL pointing to a preview of the template.
  • originalPreviewURL: String @deprecated( reason: "Incorrect casing, please use originalPreviewUrl instead" )
  • # URL pointing to a small preview of the template.
  • smallPreviewUrl: String
  • # URL pointing to a preview of the template.
  • originalPreviewUrl: String
  • # Type of the template.
  • type: TemplateType
  • }