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

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