INPUT_OBJECT
ProductSearchAttributes
Attributes for searching for products
link GraphQL Schema definition
- input ProductSearchAttributes {
- # Where the product's internal ID is greater than the value
- : Int
- # Where the product's ID is equal to
- : Int
- # Match only products for this ISBN
- : String
- # Match only products for this set of ISBNs
- : [String!]
- # Match only products to which an ISBN is assigned
- : Boolean
- # Exact case-sensitive match on title
- : String
- # Case-insensitive match for any part of a title
- : String
- # Whether the product's title has a prefix
- : String
- # Publication date equals (on this date)
- : ISO8601Date
- # Publication date greater than (after)
- : ISO8601Date
- # Publication date less than (before)
- : ISO8601Date
- # Publication date greater than or equal to (on or after)
- : ISO8601Date
- # Publication date less than or equal to (on or before)
- : ISO8601Date
- # ONIX 2.1 product form is any of
- : [ONIX21ProductFormCode!]
- # Product is likely to have changed since. Not a guarantee, because this can also
- # be impacted by changes to other products on the same work, or irrelevant changes
- # to a work's contact, series, or imprint.
- : ISO8601Date
- # The type of product. Note that passing this parameter with an empty set of
- # product types is ignored, and all product types are returned.
- : [ProductTypename!]
- }