ENUM

ReportWhisperErrorReason

Possible error reasons returned by reportWhisper mutation.

link GraphQL Schema definition

1enum ReportWhisperErrorReason {
2
3# Invalid user ID.
4INVALID_USER_ID
5
6# There are no whispers from the target user to the reporter.
7NO_WHISPERS_FROM_TARGET_USER
8
9# The reporter is currently rate limited.
10RATE_LIMITED
11
12# Unauthorized.
13UNAUTHORIZED
14
15# Unknown error.
16UNKNOWN
17}