OBJECT
Query
link GraphQL Schema definition
- type Query {
- # The client or user authenticated in this request
- : AuthenticatedEntity!
- # A BIC code
- #
- # Arguments
- # codeEq: The required code
- (: String!): BIC!
- # A list of BIC codes
- #
- # Arguments
- # codeIn: A list of required codes
- # descriptionMatch: A regular expression for searching code
- # descriptions
- (: [String!], : String): [BIC!]!
- # A BISAC code
- #
- # Arguments
- # codeEq: The required code
- (: String!): BISAC!
- # A list of BISAC codes
- #
- # Arguments
- # codeIn: [Not documented]
- # descriptionMatch: A regular expression for searching code
- # descriptions
- (: [String!], : String): [BISAC!]!
- # A contact
- #
- # Arguments
- # idEq: [Not documented]
- (: Int!): Contact!
- # A list of contacts
- #
- # Arguments
- # first: Limits the result to a number of contacts
- # productSearch: Search for contacts based on attributes of the
- # products to which they have contributed.
- #
- # For example, to find the contributors to audio download products.
- # workSearch: Search for contacts based on attributes of the
- # works to which they have contributed.
- #
- # For example, to find the contributors to works with a particular BISAC code.
- # shopSearch: Search for contacts based on the shop links of the
- # products to which they have contributed
- # contactSearch: Search for contacts based on their attributes
- (
- : Int,
- : ProductSearchAttributes,
- : WorkSearchAttributes,
- : ShopSearchAttributes,
- : ContactSearchAttributes
- ): [Contact!]!
- # A contract
- #
- # Arguments
- # contractSearch: [Not documented]
- (: ContractSearchAttributes!): Contract
- # A list of delivery date deliverable types
- : [DeliveryDateDeliverable!]!
- # All Dewey Decimal codes used
- : [String!]!
- # All Dewey Decimal editions used
- : [String!]!
- # A set of configuration items for the frontend
- : FrontendConfiguration!
- # A list of imprints
- : [Imprint!]!
- # A list of in-house editions
- : [InHouseEdition!]!
- # A list of in-house formats
- : [InHouseFormat!]!
- # A list of in-house subject codes
- #
- # Arguments
- # codeIn: [Not documented]
- # descriptionMatch: A regular expression for searching code
- # descriptions
- (
- : [String!],
- : String
- ): [InHouseSubject!]!
- # An ISBN block, loaded to the client's account
- #
- # Arguments
- # withUnusedIsbnsOnly: When true, only ISBN blocks with available
- # ISBNs will be returned
- (: Boolean): [ISBNBlock!]!
- # All Library of Congress children's subject headings used
- : [String!]!
- # All Library of Congress fiction genre headings used
- : [String!]!
- # All Library of Congress subject heading regions used
- : [String!]!
- # All Library of Congress subject headings used
- : [String!]!
- : LicensedRightGroup!
- # All in-house marketing tier classifications
- : [MarketingTier!]!
- # A NUR code
- #
- # Arguments
- # codeEq: [Not documented]
- (: String!): NUR!
- # A list of NUR codes
- #
- # Arguments
- # codeIn: [Not documented]
- # descriptionMatch: A regular expression for searching code
- # descriptions
- (: [String!], : String): [NUR!]!
- # A list of ONIX codes
- #
- # Arguments
- # numberEq:
- (: Int): ONIXCodeList
- # A list of ONIX countries and regions
- : [ONIXCode!]!
- # A price
- #
- # Arguments
- # idEq: [Not documented]
- (: Int!): Price
- # A product
- #
- # Arguments
- # productSearch: [Not documented]
- (: ProductSearchAttributes!): Product
- # A list of products
- #
- # Arguments
- # first: Limits the result to a number of products
- # productSearch: Search for products based on their attributes
- # workSearch: Search for products based on attributes of their
- # work
- # priceSearch: Search for products based on attributes of their
- # prices
- # shopSearch: Search for products based on their link to a shop
- (
- : Int,
- : ProductSearchAttributes,
- : WorkSearchAttributes,
- : PriceSearchAttributes,
- : ShopSearchAttributes
- ): [Product!]!
- # All in-house project stage classifications
- : [ProjectStage!]!
- # A list of publishers
- : [Publisher!]!
- # A list of roles
- : [Role!]
- # All in-house season classifications
- : [Season!]!
- # A list of series
- : [Series!]!
- # A shopfront
- #
- # Arguments
- # idEq: [Not documented]
- (: Int!): Shop
- # Shopfronts
- : [Shop!]
- : [StandardPriceComponents!]!
- # A Thema code
- #
- # Arguments
- # codeEq: The code required
- (: String!): Thema!
- # A list of Thema codes
- #
- # Arguments
- # codeIn: [Not documented]
- # descriptionMatch: A regular expression for searching code
- # descriptions
- (: [String!], : String): [Thema!]!
- # A list of users
- : [User!]
- # The result for validity tests
- #
- # Arguments
- # inputs: [Not documented]
- (: ValidityInputAttributes!): [Validity!]!
- # A work
- #
- # Arguments
- # workSearch: [Not documented]
- (: WorkSearchAttributes!): Work
- # All in-house work type classifications
- : [WorkType!]!
- # A list of works
- #
- # Arguments
- # first: Limits the result to a number of works
- # after: Limits the result to IDs greater than this value
- # workSearch: Search for works based on their attributes
- # productSearch: Search for works based on attributes of their
- # products
- # priceSearch: Search for works based on attributes of their
- # products' prices
- # shopSearch: Search for works based on shops that their products
- # are linked to
- (
- : Int,
- : Int,
- : WorkSearchAttributes,
- : ProductSearchAttributes,
- : PriceSearchAttributes,
- : ShopSearchAttributes
- ): [Work!]!
- }
link Require by
This element is not required by anyone