OBJECT

TextToken

A shelf title token type that contains text with various formatters.

link GraphQL Schema definition

1type TextToken {
2
3# If this title token should be emphasized or not.
4hasEmphasis: Boolean!
5
6# The location that this shelf title token should link to.
7location: LinkType!
8
9# The text to display for this token.
10text: String!
11
12}