OBJECT

ModEdge

Element in a list of moderators of a channel.

link GraphQL Schema definition

1type ModEdge {
2
3# Opaque cursor describing this edge's position in the paginated list.
4cursor: Cursor!
5
6# Timestamp of when the moderator status was granted.
7grantedAt: Time!
8
9# Whether the moderator is connected to the channel's chat.
10isActive: Boolean
11
12# The user that is a moderator.
13node: User!
14
15}