OBJECT

Moodboard

A Moodboard

link GraphQL Schema definition

  • type Moodboard {
  • # ID of the Moodboard
  • id: ID!
  • # Name of the Moodboard
  • name: String!
  • # Colors of the Moodboard
  • colors: [Color]!
  • # Description of the Moodboard
  • description: String
  • # Image URl of the Moodboard creation
  • imageUrl: String
  • # Timestamp of the Moodboard creation
  • creationTimestamp: Int!
  • # Timestamp of the Moodboard 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]
  • }