This commit is contained in:
15
src/operations/content-moderation.gql
Normal file
15
src/operations/content-moderation.gql
Normal 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)
|
||||
}
|
Reference in New Issue
Block a user