Created
January 28, 2021 12:01
-
-
Save yob/ba81bf243014204244869ac63461d8d9 to your computer and use it in GitHub Desktop.
buildkite graphql query to filter org pipelines by repo URL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query PipelinesByRepoQuery { | |
organization(slug: "yob-opensource") { | |
pipelines(first:1, repository:{url:"https://github.com/yob/pdf-reader.git"}) { | |
edges { | |
node { | |
name | |
repository { | |
url | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment