I’d like to retrieve the set of jobs with a given name under a project. Trying this in the GraphiQL explorer, I used the query:
{
project(fullPath: "path/to/project") {
name
jobs(statuses: [SUCCESS]) {
edges {
node {
id
name
}
}
}
}
}
Because jobs
returns a connection, all I seem to be able to do is list the nodes. How do I filter it so that I only get jobs with a particular name eg. Release
?
This is on gitlab.com
which seems to on GitLab Enterprise Edition 15.10.0-pre
.