OBJECT

UnbanRequest

A request from a channel-banned user to the channel moderators to be unbanned from the channel.

link GraphQL Schema definition

1type UnbanRequest {
2
3# The channel on which the banned user is appealing a ban.
4channel: Channel
5
6# The time at which the unban request was created.
7createdAt: Time!
8
9# UUID of the Unban Request.
10id: ID!
11
12# The banned user appealing the ban.
13requester: User
14
15# Custom message provided by the requester.
16requesterMessage: String
17
18# The time at which the unban request was resolved (approved or denied).
19resolvedAt: Time
20
21# The moderator that has taken action on the user.
22resolvedBy: User
23
24# Custom message provided by the resolver.
25resolverMessage: String
26
27# The status of the unban request.
28status: UnbanRequestStatus!
29
30}