OBJECT

FollowedLiveUserConnection

A list of live-streaming broadcasters followed by a user.

link GraphQL Schema definition

1type FollowedLiveUserConnection {
2
3# The live broadcasters.
4edges: [FollowedLiveUserEdge]!
5
6# The live broadcasters.
7nodes: [User] @deprecated( reason: "Use FollowedLiveUserConnection.edges instead for pagination support" )
8
9# Pagination.
10pageInfo: PageInfo!
11
12}