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

get_issues_list_details.query.graphql « queries « issues_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c95e6114d308ba028ec6c5dbdfda5b1b9719c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
query getIssuesListDetails($fullPath: ID!) {
  project(fullPath: $fullPath) {
    issues {
      nodes {
        labels {
          nodes {
            title
            color
          }
        }
      }
    }
    jiraImportStatus
    jiraImports {
      nodes {
        importedIssuesCount
        jiraProjectKey
      }
    }
  }
}