Welcome to mirror list, hosted at ThFree Co, Russian Federation.

toggle_attention_requested.mutation.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9f4af6e1b95f7c33a2912ceb17d1010c29bd7f3 (plain)
1
2
3
4
5
6
7
mutation mergeRequestToggleAttentionRequested($projectPath: ID!, $iid: String!, $userId: ID!) {
  mergeRequestToggleAttentionRequested(
    input: { projectPath: $projectPath, iid: $iid, userId: $userId }
  ) {
    errors
  }
}