For statistical analysis I’d like to query all pipelines for a given project after a certain date. Is there a way to do this using the REST or graphql API?
I created a graphql query to select all the pipelines for a given project like this:
{
projects(ids: “gid://gitlab/Project/XXX”) {
nodes {
name
id
pipelines {
nodes {
id
createdAt
finishedAt
status
ref
…
Now I’d like to limit the fetched pipelines to those created after a certain date, e.g. createdAt > “2022-07-04T13:18:29Z”
Is there any way to accomplish this? If not using graphql, maybe using REST?
Im using a self-hosted GitLab (14.8.4-ee)