summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issuable/popover/queries/issue.query.graphql
blob: 1bbe6cb6eacf56a9c8a7c984ec8a6c12b3107320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query issue($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    id
    issue(iid: $iid) {
      id
      title
      createdAt
      state
      confidential
      dueDate
      milestone {
        id
        title
        startDate
        dueDate
      }
      type
    }
  }
}