OBJECT

Series

A bibliographic series

link GraphQL Schema definition

  • type Series {
  • # The Consonance unique identifier
  • id: Int!
  • # The in-house name of the series, if it exists, otherwise the series title
  • name: String!
  • # The online ISSN identifier
  • onlineIssn: String
  • # The print ISSN identifier
  • printIssn: String
  • # The works in the series
  • seriesMembership: [SeriesMembership!]! @deprecated( reason: "Need to handle multiple series memberships, plural" )
  • # The works in the series
  • seriesMemberships: [SeriesMembership!]!
  • # The subtitle of the series
  • subtitle: String
  • # The title of the series, including prefix
  • title: String!
  • # The prefix to the title
  • titlePrefix: String
  • # The title of the series, including prefix and subtitle
  • titleWithSubtitle: String!
  • # The title without prefix, as used for ordering
  • titleWithoutPrefix: String!
  • }