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

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

query getJiraImportDetails($fullPath: ID!) {
  project(fullPath: $fullPath) {
    jiraImportStatus
    jiraImports {
      nodes {
        ...JiraImport
      }
    }
    services(active: true, type: JIRA_SERVICE) {
      nodes {
        ... on JiraService {
          projects {
            nodes {
              key
              name
            }
          }
        }
      }
    }
  }
}