Edit

IABSD.fr/xenocara/lib/mesa/bin/ci/pipeline_details.gql

Branch :

  • Show log

    Commit

  • Author : jsg
    Date : 2025-06-05 11:23:11
    Hash : 67d6f117
    Message : Import Mesa 25.0.7

  • lib/mesa/bin/ci/pipeline_details.gql
  • query jobs($projectPath: ID!, $iid: ID!, $cursor: String) {
      project(fullPath: $projectPath) {
        id
        pipeline(iid: $iid) {
          id
          iid
          complete
          stages {
            nodes {
              name
            }
          }
          jobs(after: $cursor) {
            pageInfo {
              hasNextPage
              endCursor
            }
            count
            nodes {
              name
              needs {
                edges {
                  node {
                    name
                  }
                }
              }
              stage {
                name
              }
            }
          }
        }
      }
    }