OBJECT

Reference

Reference object

link GraphQL Schema definition

  • type Reference {
  • # ID of the Reference
  • id: ID!
  • # the Media of the Reference
  • representations: [Media]
  • # Product name of the Reference
  • productName: String!
  • # Slug of the Reference
  • slug: String!
  • # Producer of the Reference
  • producer: String
  • # Volume of the presented Bottle
  • volume: String
  • # Country of origin of the Reference
  • countryOfOrigin: String
  • # Connected Bottle Manufacturer
  • bottleManufacturer: BottleManufacturer
  • # Connected Bottle Family
  • bottleFamily: BottleFamily
  • # Connected Bottle
  • bottle: Bottle
  • # Connected Reference Categories
  • categories: [ReferenceCategory]
  • # Usual bottle order of the Reference
  • usualBottleOrder: String
  • # Notes of the Reference
  • notes: String
  • # Is still used of the Reference
  • isStilUsed: Boolean
  • # Public state of the Reference
  • showInExternalGallery: Boolean
  • # Is the Reference published
  • isPublished: Boolean!
  • # Is the Reference paused
  • isPaused: Boolean!
  • # CreatedAt datetime of the Reference
  • createdAt: DateTime!
  • # UpdatedAt datetime of the Reference
  • updatedAt: DateTime!
  • # Name of the user who made last modification of the Reference
  • lastModifiedBy: String
  • # Is the Reference soft deleted
  • archived: Boolean!
  • }