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