Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 419 Bytes

products_and_their_works.md

File metadata and controls

24 lines (20 loc) · 419 Bytes

Select works and their products

Select all products and their works

Explanation

Products are retrieved along with their work. In this example the Library of Congress subject heading, which is held against the work only, is also retrieved.

query GetProductDetails {
  products {
    id
    publicationDate
    isbn {
      isbn13
    }
    work {
      id
      title
      lcSubjectHeading
    }
  }
}