OBJECT

Image

Image object

link GraphQL Schema definition

  • type Image {
  • # ID of the Image
  • id: ID!
  • # Connected Bottle Family
  • family: BottleFamily!
  • # the Media of the Image
  • representation: Media
  • # Volume of the presented Bottle
  • volume: String
  • # Reference Number of the presented Bottle
  • refNumber: String
  • # Colour name of the presented Bottle
  • colourName: String
  • # Colour of the presented Bottle
  • colourPreview: GlassColour
  • # Is the Image published
  • isPublished: Boolean!
  • # Is the Image paused
  • isPaused: Boolean!
  • # CreatedAt datetime of the Image
  • createdAt: DateTime!
  • # UpdatedAt datetime of the Image
  • updatedAt: DateTime!
  • # Is the Image soft deleted
  • archived: Boolean!
  • }