INPUT_OBJECT

WorkSearchAttributes

Attributes for searching for works

link GraphQL Schema definition

  • input WorkSearchAttributes {
  • # Where the work's internal ID is greater than the value
  • after: Int
  • # Where the work's internal ID is equal to the value
  • idEq: Int
  • # Where the work's associated contract ID is equal to the value
  • contractIdEq: Int
  • # Find works for which an attribute—or an attribute of a closely related record
  • # such as its series, contributors, or products—has changed since a particular
  • # date
  • changedSince: ISO8601Date
  • # Exact case-sensitive match on a work's title
  • titleEq: String
  • # Case-insensitive match for any part of a work's title
  • titleCont: String
  • # Exact case-sensitive match on a work's subtitle
  • subtitleEq: String
  • # Case-insensitive match for any part of a work's subtitle
  • subtitleCont: String
  • # Whether the work has a subtitle or not
  • subtitlePresent: Boolean
  • # Find works for a given list of imprint IDs
  • imprintIdIn: [Int!]
  • }