OBJECT
ChannelSelfEdge
Information about the requesting user with respect to a channel.
link GraphQL Schema definition
1 type ChannelSelfEdge { 2 3 # Whether or not the requesting user can request an unban on the channel. 4 : Boolean 5 6 # Properties relating to the authenticated user's community points in a channel. 7 # Null if community points are not enabled in the channel. 8 : CommunityPointsProperties 9 10 # Whether or not the requesting user is authorized to view the channel's content 11 # in a channel restrictions context. 12 : Boolean! 13 14 # Whether or not the resource is restricted for the requesting user. 15 : Boolean! 16 17 # Returns the user's last unban request on the channel. 18 : UnbanRequest 19 20 # Chat messages sent in a channel that are relevant to moderators. 21 ( 22 : Int, 23 : Cursor, 24 : SortOrder, 25 : Boolean, 26 : Boolean, 27 : Boolean 28 ): ModLogsMessageConnection 29 30 # List of channel feature permissions the logged in user has on the channel. 31 : [ChannelPermission!]! 32 33 # List of recent (either still active or recently resolved) Predictions made by 34 # this user on this Channel. 35 : [Prediction!] 36 37 # If restricted, how the resource is restricted. 38 : ResourceRestrictionType 39 40 # Reason why user cannot request an unban on the channel. 41 : UnbanRequestRestrictionReason 42 43 }