gitlab-org--gitlab-foss/app/assets/javascripts/jira_import/queries/get_jira_import_details.que...

25 lines
414 B
GraphQL

#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
}
}
}
}
}
}
}