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