OBJECT

VIPEdge

Element in a list of VIP users of a channel.

link GraphQL Schema definition

1type VIPEdge {
2
3# Opaque cursor describing this edge's position in the paginated list.
4cursor: Cursor!
5
6# Timestamp of when the VIP status was granted.
7grantedAt: Time!
8
9# The user who has the VIP status.
10node: User
11
12}