8 lines
228 B
GraphQL
8 lines
228 B
GraphQL
|
mutation mergeRequestRemoveAttentionRequest($projectPath: ID!, $iid: String!, $userId: UserID!) {
|
||
|
mergeRequestRemoveAttentionRequest(
|
||
|
input: { projectPath: $projectPath, iid: $iid, userId: $userId }
|
||
|
) {
|
||
|
errors
|
||
|
}
|
||
|
}
|