16 lines
333 B
GraphQL
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)
|
|
}
|