OBJECT

InHouseFormat

An in-house format, used to assign a meaningful name to the format of the product e.g. "Royal hardback"

link GraphQL Schema definition

  • type InHouseFormat {
  • # The code assigned to the in-house edition
  • code: String
  • # The record's unique Consonance identifier
  • id: Int!
  • # The list of in-house editions associated with the in-house format
  • inHouseEditions: [InHouseEdition!]!
  • # The name assigned to the in-house edition
  • name: String!
  • # The number of products this in-house edition has been assigned to
  • productsCount: Int!
  • }