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