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

list_item_shared.fragment.graphql « list « graphql « runner « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f72509f599dc762431708be4bc66f69afdad57f (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
fragment ListItemShared on CiRunner {
  id
  description
  runnerType
  shortSha
  version
  ipAddress
  active
  locked
  jobCount
  tagList
  createdAt
  contactedAt
  status(legacyMode: null)
  jobExecutionStatus
  userPermissions {
    updateRunner
    deleteRunner
  }
  groups(first: 1) {
    nodes {
      id
      name
      fullName
      webUrl
    }
  }
  ownerProject {
    id
    name
    nameWithNamespace
    webUrl
  }
}