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: aa8d03c7f17710b45becd08bef86f9e448ef4a26 (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 {
      nodes {
        ...JiraImport
      }
    }
  }
}