OBJECT
Series
A bibliographic series
link GraphQL Schema definition
- type Series {
- # The Consonance unique identifier
- : Int!
- # The in-house name of the series, if it exists, otherwise the series title
- : String!
- # The online ISSN identifier
- : String
- # The print ISSN identifier
- : String
- # The works in the series
- : [SeriesMembership!]! @deprecated( reason: "Need to handle multiple series memberships, plural" )
- # The works in the series
- : [SeriesMembership!]!
- # The subtitle of the series
- : String
- # The title of the series, including prefix
- : String!
- # The prefix to the title
- : String
- # The title of the series, including prefix and subtitle
- : String!
- # The title without prefix, as used for ordering
- : String!
- }