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

issue_set_due_date.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: bbea248cf857fa923ac32a43adf3708f756c46d1 (plain)
1
2
3
4
5
6
7
8
mutation issueSetDueDate($input: UpdateIssueInput!) {
  updateIssue(input: $input) {
    issue {
      dueDate
    }
    errors
  }
}