summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/issue_set_title.mutation.graphql
blob: 62e6c1352a68c08fa583179c9b4ed5651dbbb295 (plain)
1
2
3
4
5
6
7
8
mutation issueSetTitle($input: UpdateIssueInput!) {
  updateIssue(input: $input) {
    issue {
      title
    }
    errors
  }
}