OBJECT

StreamSelfConnection

The relationship between the authenticated user and a stream.

link GraphQL Schema definition

1type StreamSelfConnection {
2
3# Whether or not the requesting user is authorized to view the channel's stream.
4canWatch: Boolean!
5
6# Whether the stream is restricted.
7isRestricted: Boolean!
8
9# If the stream is restricted, the type indicates how the stream is restricted.
10restrictionType: String
11
12}