OBJECT

PersonalSectionChannel

Describes the personal channel for the current user.

link GraphQL Schema definition

1type PersonalSectionChannel {
2
3# Either live stream or vod depending on whether the stream in live.
4content: PersonalSectionChannelContent
5
6# Describes how to label channels, if a label is necessary.
7label: PersonalSectionChannelLabel!
8
9# Unique id per channel used in client tracking.
10trackingID: ID!
11
12# The channel (user object of channel).
13user: User
14
15}