OBJECT

Palette

A Palette

link GraphQL Schema definition

  • type Palette {
  • # ID of the Palette
  • id: ID!
  • # Name of the Palette
  • name: String!
  • # Colors of the Palette
  • colors: [Color]!
  • # Description of the Palette
  • description: String
  • # Tags of the Palette
  • tags: [String]
  • # Timestamp of the Palette creation
  • creationTimestamp: Int!
  • # Timestamp of the Palette last modification
  • lastModifiedTimestamp: Int!
  • # User who made the last modification
  • lastModifiedUser: User
  • # Owner of the Palette
  • owner: User
  • # Emails with which the Palette is shared
  • collaborators: [User]
  • }