OBJECT

PersonalSection

Describes the section(follows, recommendation ...) for a current user in the navigation bar.

link GraphQL Schema definition

1type PersonalSection {
2
3# Returns the list of contents in this section, nil if there is an error.
4items: [PersonalSectionItem!]
5
6# The localized title for the personal section.
7title: PersonalSectionTitle!
8
9# Describes the section (FOLLOWED, RECOMMENDED, POPULAR ...).
10type: PersonalSectionType!
11
12}