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

issues.graphql « queries « coming_soon « list « packages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
        }
      }
    }
  }
}