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

get_performance_insights.query.graphql « queries « graphql « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25e990c893492f7c040385273a638f76f5ecf914 (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
25
26
27
28
query getPerformanceInsightsData($fullPath: ID!, $iid: ID!) {
  project(fullPath: $fullPath) {
    id
    pipeline(iid: $iid) {
      id
      jobs {
        pageInfo {
          hasNextPage
        }
        nodes {
          id
          duration
          detailedStatus {
            id
            detailsPath
          }
          name
          stage {
            id
            name
          }
          startedAt
          queuedDuration
        }
      }
    }
  }
}