Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getJiraProjects.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: 13100eac221370f44acdbf9b3c7b2ae005643091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query getJiraProjects($fullPath: ID!) {
  project(fullPath: $fullPath) {
    jiraImportStatus
    jiraImports {
      nodes {
        jiraProjectKey
        scheduledAt
        scheduledBy {
          username
        }
      }
    }
  }
}