summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages/list/coming_soon/queries/issues.graphql
blob: 36c27d9ad700b64ee8dcbfc5a189654c490d5e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query getComingSoonIssues($projectPath: ID!, $labelNames: [String]) {
  project(fullPath: $projectPath) {
    issues(state: opened, labelName: $labelNames) {
      nodes {
        iid
        title
        webUrl
        labels {
          nodes {
            title
            color
          }
        }
        milestone {
          title
        }
      }
    }
  }
}