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

issue_due_date.query.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: 6d3f782bd0ae3f8b652b888f93477fa841007ae2 (plain)
1
2
3
4
5
6
7
8
9
10
query issueDueDate($fullPath: ID!, $iid: String) {
  workspace: project(fullPath: $fullPath) {
    __typename
    issuable: issue(iid: $iid) {
      __typename
      id
      dueDate
    }
  }
}