OBJECT

Bottle

Bottle object

link GraphQL Schema definition

  • type Bottle {
  • # ID of the Bottle
  • id: ID!
  • # Connected Bottle Family
  • family: BottleFamily!
  • # Prederred Name of the Bottle
  • preferredName: String
  • # Prederred Image of the Bottle (the Media object)
  • preferredImage: Image
  • # Reference Number of the Bottle
  • refNumber: String
  • # Volume of the Bottle
  • volume: String
  • # Height of the Bottle
  • height: String
  • # Weight of the Bottle
  • weight: String
  • # Vinolok Size of the Bottle
  • vinolokSize: VinolokSize
  • # Compatibility of the Bottle
  • compatibility: String
  • # MOQ of the Bottle
  • moq: Int
  • # Colour name of the Bottle
  • colourName: String
  • # Colour of the Bottle
  • colourPreview: GlassColour
  • # Description of the Bottle
  • description: String
  • # Technical Sheet object of the Bottle
  • technicalSheet: File
  • # Is the Bottle published
  • isPublished: Boolean!
  • # Is the Bottle paused
  • isPaused: Boolean!
  • # CreatedAt datetime of the Bottle
  • createdAt: DateTime!
  • # UpdatedAt datetime of the Bottle
  • updatedAt: DateTime!
  • # Is the Bottle soft deleted
  • archived: Boolean!
  • }