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

todo_create.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: 4675db9153e1b31f7739c4a81944e6cc4a02d974 (plain)
1
2
3
4
5
6
7
8
9
mutation issuableTodoCreate($input: TodoCreateInput!) {
  todoMutation: todoCreate(input: $input) {
    __typename
    todo {
      id
    }
    errors
  }
}