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

runner_details_shared.fragment.graphql « details « graphql « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8c67728fac3a50c7de0f40643dbf2d4c8ddced7 (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
29
30
31
32
33
34
35
fragment RunnerDetailsShared on CiRunner {
  __typename
  id
  runnerType
  active
  accessLevel
  runUntagged
  locked
  ipAddress
  description
  maximumTimeout
  jobCount
  tagList
  createdAt
  status(legacyMode: null)
  contactedAt
  version
  editAdminUrl
  userPermissions {
    updateRunner
    deleteRunner
  }
  groups {
    # Only a single group can be loaded here, while projects
    # are loaded separately using the query with pagination
    # parameters `runner_projects.query.graphql`.
    nodes {
      id
      avatarUrl
      name
      fullName
      webUrl
    }
  }
}