OBJECT

SocialMedia

A social media item that is an attribute of Channel.

link GraphQL Schema definition

1type SocialMedia {
2
3# The social media's unique identifier.
4id: ID!
5
6# The name of the domain which will be used to determine which favicon to render.
7name: String
8
9# The label displayed to the client.
10title: String!
11
12# The web address to a social media website.
13url: String!
14
15}