Tag: gitlab-api

  • Multi-looping with gitlab Graphql API

    Multi-looping with gitlab Graphql API

    0 Im trying to get list of all the pipelines and all the jobs from Gitlab that ran in a day using graphql API, Here is the query I have query = """ query($projectPath: ID!, $pipelineCursor: String, $jobCursor: String) { project(fullPath: $projectPath) { pipelines(updatedAfter:"2023-09-06T00:00:00Z",updatedBefore:"2023-09-06T23:59:59Z",status:SUCCESS,first: 100,after: $pipelineCursor,source:"pipeline") { pageInfo{ hasNextPage endCursor } count nodes { jobs(first:…