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

todo_mark_done.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: 4a91147c246f32eaaab9ce954a33dc0accdb565e (plain)
1
2
3
4
5
6
7
8
mutation issuableTodoMarkDone($input: TodoMarkDoneInput!) {
  todoMutation: todoMarkDone(input: $input) {
    todo {
      id
    }
    errors
  }
}