summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues/list/queries/get_issues_list_details.query.graphql
blob: a53dba8c7c8fb994a86e459431725438e8e5c788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
query getIssuesListDetails($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    issues {
      nodes {
        id
        labels {
          nodes {
            id
            title
            color
          }
        }
      }
    }
    jiraImportStatus
    jiraImports {
      nodes {
        importedIssuesCount
        jiraProjectKey
      }
    }
  }
}