OBJECT
Palette
A Palette
link GraphQL Schema definition
- type Palette {
- # ID of the Palette
- : ID!
- # Name of the Palette
- : String!
- # Colors of the Palette
- : [Color]!
- # Description of the Palette
- : String
- # Tags of the Palette
- : [String]
- # Timestamp of the Palette creation
- : Int!
- # Timestamp of the Palette last modification
- : Int!
- # User who made the last modification
- : User
- # Owner of the Palette
- : User
- # Emails with which the Palette is shared
- : [User]
- }