OBJECT

URLMetadata

The url metadata of a twitch webpage.

link GraphQL Schema definition

1type URLMetadata {
2
3# The linked data (JSON format) of the page.
4jsonld: String
5
6# The list of metatags of the page.
7metatags: [SEOMetatag!]!
8
9# The data that power URL sharing.
10share: URLMetadataShare!
11
12# The title of the page.
13title: String!
14
15}