OBJECT

SubscribedChannelConnection

A list of channels subscribed to by a user.

link GraphQL Schema definition

1type SubscribedChannelConnection {
2
3# The subscribed channels.
4edges: [SubscribedChannelEdge!]
5
6# Pagination.
7pageInfo: PageInfo!
8
9# The total number of subscribed channels.
10totalCount: Int
11
12}