OBJECT

Book

A Pantone Book

link GraphQL Schema definition

  • type Book {
  • # ID of the book
  • id: ID!
  • # Title of the book
  • title: String
  • # Pantone colors present in the Book
  • colors: [Color]
  • # Group of the Pantone Books of which the Book is part of
  • group: String
  • # Information about the Book, available in different languages
  • info: BookInfoLanguages
  • # Position of the Book in its Group
  • sortIndex: Int
  • # Product URL on Pantone website
  • url: String
  • # Product URLs on Pantone website available in different languages
  • i18nURL: Booki18nURL
  • # Book is particularly important (New book, Main book of its Group, etc.)
  • highlighted: Boolean
  • # Current version of the book
  • version: String
  • }