BookSeries
No description
type BookSeries implements Series {
issn: String!
name: String
position: Int
}
Fields
BookSeries.issn
● String!
non-null scalar
The identifier of the series. Should accurately allow to differentiate multiple series.
BookSeries.name
● String
scalar
The name of the series, in its primary language.
BookSeries.position
● Int
scalar
The numerical position of the book within the sequence, as defined by the author.
Interfaces
Series
interface
Whenever a single publication is part of a series, this type allows us to define the enclosing series and this publication's relation to it.