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

get_issues_list_details.query.graphql « queries « issuables_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b62b9b2af60b493c233d797324dd6e95edbc6a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#import "~/jira_import/queries/jira_import.fragment.graphql"

query($fullPath: ID!) {
  project(fullPath: $fullPath) {
    issues {
      nodes {
        labels {
          nodes {
            title
            color
          }
        }
      }
    }
    jiraImportStatus
    jiraImports {
      nodes {
        ...JiraImport
      }
    }
  }
}