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

alert_todo_mark_done.mutation.graphql « mutations « graphql « alert_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d59b4d94cdae1eca266c23162584e9223173460 (plain)
1
2
3
4
5
6
7
8
mutation todoMarkDone($id: ID!) {
  todoMarkDone(input: { id: $id }) {
    errors
    todo {
      id
    }
  }
}