Adds ID to group, stage, and detailed status
What does this MR do?
Adds ID to some CI types: StageType
, DetailedStatusType
, GroupType
, ActionStatusType
and BuildNeedType
Screenshots (strongly suggested)
{
project(fullPath: "root/the-visitor") {
id
pipeline(iid: 1) {
detailedStatus{
id
}
sourceJob {
id
}
downstream {
nodes {
id
}
}
upstream {
id
}
stages {
nodes {
id
detailedStatus{
id
}
groups {
nodes {
id
}
}
}
}
}
}
}
{
"data": {
"project": {
"id": "gid://gitlab/Project/20",
"pipeline": {
"detailedStatus": {
"id": "created"
},
"sourceJob": null,
"downstream": {
"nodes": []
},
"upstream": null,
"stages": {
"nodes": [
{
"id": "gid://gitlab/Ci::Stage/173",
"detailedStatus": {
"id": "created"
},
"groups": {
"nodes": [
{
"id": "173-build ruby"
}
]
}
}
]
}
}
}
}
}
Does this MR meet the acceptance criteria?
Conformity
-
I have included changelog trailers, or none are needed. (Does this MR need a changelog?) -
I have added/updated documentation, or it's not needed. (Is documentation required?) -
I have properly separated EE content from FOSS, or this MR is FOSS only. (Where should EE code go?) -
I have added information for database reviewers in the MR description, or it's not needed. (Does this MR have database related changes?) -
I have self-reviewed this MR per code review guidelines. -
This MR does not harm performance, or I have asked a reviewer to help assess the performance impact. (Merge request performance guidelines) -
I have followed the style guides. -
This change is backwards compatible across updates, or this does not apply.
Edited by Laura Montemayor