42 lines
741 B
GraphQL
42 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
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|