operations
All checks were successful
Tests / Tests (pull_request) Successful in 22s

This commit is contained in:
2025-09-23 11:02:16 -07:00
parent d8ee83c627
commit e783050a02
2 changed files with 194 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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)
}