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: 0eaaad580fcf468a4ac574b54a81f468c0152b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "./jira_import.fragment.graphql"

query($fullPath: ID!) {
  project(fullPath: $fullPath) {
    jiraImportStatus
    jiraImports(last: 1) {
      nodes {
        ...JiraImport
      }
    }
  }
}