debian-mirror-gitlab/app/assets/javascripts/runner/graphql/show/runner.query.graphql
2022-07-16 19:58:13 +02:00

41 lines
741 B
GraphQL

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
}
}
}
}