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

runner.query.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: 178816b58bd608fd376894896f9abb4461d95973 (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
40
41
query getRunner($id: CiRunnerID!) {
  runner(id: $id) {
    __typename
    id
    shortSha
    runnerType
    active
    accessLevel
    runUntagged
    locked
    ipAddress
    executorName
    architectureName
    platformName
    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
      }
    }
  }
}