gitlab/app/assets/javascripts/jira_import/queries/get_jira_import_details.query.graphql
2021-11-08 04:55:59 +00:00

25 lines
435 B
GraphQL

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