OBJECT

ISBNBlock

A block of ISBNs

link GraphQL Schema definition

  • type ISBNBlock {
  • # The first three elements of the ISBN-13s in the block
  • block: String!
  • # The number of ISBNs that the block contains
  • blockSize: Int!
  • # The name of the imprint associated with the block, if any
  • imprintName: String
  • # The number of ISBNs loaded into Consonance for this block
  • isbnLoadedCount: Int!
  • # The ISBNs loaded into the system for this block.
  • #
  • # Arguments
  • # limit: The maximum number of ISBNs to return
  • isbns(limit: Int): [ISBN!]!
  • # The number of ISBNs loaded into the system which are not yet assigned to a
  • # product.
  • unusedIsbnCount: Int!
  • # The ISBNs loaded into the system for this block.
  • #
  • # Arguments
  • # limit: The maximum number of ISBNs to return
  • unusedIsbns(limit: Int): [ISBN!]!
  • }

link Require by