get_incidents.query.graphql 484 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
query getIncidents($projectPath: ID!, $labelNames: [String], $state: IssuableState) {
  project(fullPath: $projectPath) {
    issues(state: $state, labelName: $labelNames) {
      nodes {
        iid
        title
        createdAt
        labels {
          nodes {
            title
            color
          }
        }
        assignees {
          nodes {
16
            name
17
            username
18 19
            avatarUrl
            webUrl
20 21 22 23 24 25
          }
        }
      }
    }
  }
}