OBJECT

BottleManufacturer

Bottle Manufacturer object

link GraphQL Schema definition

  • type BottleManufacturer {
  • # ID of the Bottle Manufacturer
  • id: ID!
  • # the Media of the Bottle Manufacturer
  • representation: Media
  • # Name of the Bottle Manufacturer
  • name: String!
  • # Slug of the Bottle Manufacturer
  • slug: String!
  • # Website URL of the Bottle Manufacturer
  • website: String
  • # Count of the Bottle Families connected to the Bottle Manufacturer
  • connectedBottleFamilies: Int!
  • # Count of the public References connected to the Bottle Manufacturer
  • connectedReferences: Int!
  • # Is the Bottle Manufacturer paused
  • isPaused: Boolean!
  • # CreatedAt datetime of the Bottle Manufacturer
  • createdAt: DateTime!
  • # UpdatedAt datetime of the Bottle Manufacturer
  • updatedAt: DateTime!
  • # Is the Bottle Manufacturer soft deleted
  • archived: Boolean!
  • }