ENUM

PersonalSectionType

Describes the type in personal sections.

link GraphQL Schema definition

1enum PersonalSectionType {
2
3# Returns the list of followed channels if the user is authenticated.
4FOLLOWED_SECTION
5
6# Returns the list of recommended channels.
7RECOMMENDED_SECTION
8
9# Returns the list of popular channels.
10POPULAR_SECTION
11
12# Returns the list of similar channels.
13SIMILAR_SECTION
14}