OBJECT

ShelfTitle

The title for the shelf.

link GraphQL Schema definition

1type ShelfTitle {
2
3# A resource to interpolate into the title string.
4context: ShelfTitleContext
5
6# The fallback localized title, only to be used if client fails to parse the
7# localizedTitleTokens.
8fallbackLocalizedTitle: String!
9
10# The name of the shelf being presented, used for backwards compatibility. Allows
11# for localization and interpolation.
12key: String!
13
14# The localized shelf title in the form of a list of tokens.
15localizedTitleTokens: [TitleTokenEdge]!
16
17}