ENUM

PersonalSectionChannelLabel

Describes how to label channels in combined sections. This enum is closely related to - but separate from - the PersonalSectionType enum. Some sections may not have labels and some labels may not have sections.

link GraphQL Schema definition

1enum PersonalSectionChannelLabel {
2
3# Use no label.
4NONE
5
6# Use label for recommended channel.
7RECOMMENDED
8
9# Use label for similar channel.
10SIMILAR
11
12# Use label for followed channel.
13FOLLOWED
14
15# Use label for popular channel.
16POPULAR
17}