Files
railbird-gql/src/operations/content-moderation.gql
Loewy e783050a02
All checks were successful
Tests / Tests (pull_request) Successful in 22s
operations
2025-09-23 11:02:16 -07:00

16 lines
333 B
GraphQL

mutation blockContent($videoId: Int!) {
blockContent(videoId: $videoId)
}
mutation blockUser($userId: Int!) {
blockUser(userId: $userId)
}
mutation reportContent(
$videoId: Int!
$reason: ReportReasonEnum!
$customReason: String = null
) {
reportContent(videoId: $videoId, reason: $reason, customReason: $customReason)
}