Add executorName to GraphQL API
What does this MR do and why?
This change adds the executorName field to the runner definition for more details on the runner.
Changelog: added
Related to #352885 (closed)
Screenshots or screen recordings
How to set up and validate locally
In the graphql-explorer
e.g. http://gdk.test:3000/-/graphql-explorer
query getRunner($id: CiRunnerID!) {
runner(id: $id) {
id
runnerType
executorName
}
}
Given an ID such as:
{
"id": "gid://gitlab/Ci::Runner/79"
}
Check the executorName
result is there.
MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
-
I have evaluated the MR acceptance checklist for this MR.