Hi everyone, Is there a graphql query to get all ...
# ask-community
n
Hi everyone, Is there a graphql query to get all the pipeline names in a repository?
d
the details of this might be different depending on what version you're on (jobs could be pipelines on older versions), but something like this?
Copy code
query JobDescriptions {
  repositoriesOrError {
    ... on RepositoryConnection {
      nodes {
        jobs {
          name
        }
      }
    }
  }
}
n
Thanks @daniel