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

runner_details_shared.fragment.graphql « show « graphql « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5689ff768783fd1b69a50c17d8c3eadfae5c117 (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
36
37
38
39
fragment RunnerDetailsShared on CiRunner {
  id
  shortSha
  runnerType
  active
  accessLevel
  runUntagged
  locked
  ipAddress
  executorName
  architectureName
  platformName
  description
  maximumTimeout
  jobCount
  tagList
  createdAt
  status(legacyMode: null)
  contactedAt
  tokenExpiresAt
  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
    }
  }
}