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

group_runner_connection.fragment.graphql « list « graphql « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baef16a4b41a930a7c09244bfaf6c2a1801bfa5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "ee_else_ce/runner/graphql/list/list_item.fragment.graphql"
#import "~/graphql_shared/fragments/page_info.fragment.graphql"

fragment GroupRunnerConnection on CiRunnerConnection {
  edges {
    webUrl
    editUrl
    node {
      ...ListItem
      projectCount # Used to determine why some project runners can't be deleted
    }
  }
  pageInfo {
    ...PageInfo
  }
}