summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_import/queries/get_jira_import_details.query.graphql
blob: 2aacc5cf66899df4041f35d8b55f500cc5b75498 (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($fullPath: ID!) {
  project(fullPath: $fullPath) {
    jiraImportStatus
    jiraImports {
      nodes {
        ...JiraImport
      }
    }
    services(active: true, type: JIRA_SERVICE) {
      nodes {
        ... on JiraService {
          projects {
            nodes {
              key
              name
            }
          }
        }
      }
    }
  }
}