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

issue_set_title.mutation.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 147cf040a8532a97f7acce4363b3786696c93aae (plain)
1
2
3
4
5
6
7
8
9
mutation issueSetTitle($input: UpdateIssueInput!) {
  updateIssuableTitle: updateIssue(input: $input) {
    issue {
      id
      title
    }
    errors
  }
}