OBJECT

ReportReason

A valid reason for a report.

link GraphQL Schema definition

1type ReportReason {
2
3# The unique ID of the reason.
4id: ID!
5
6# Whether or not this report reason is in-scope for a country-specific law.
7isApplicableToCountryRegulations: Boolean!
8
9# The displayed text for this reason localized based on Accept-Language.
10text: String!
11
12}