Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Created February 14, 2018 23:54
Show Gist options
  • Save yoshuawuyts/5bee8cc160fe4918e7770ec4eb7f7e0a to your computer and use it in GitHub Desktop.
Save yoshuawuyts/5bee8cc160fe4918e7770ec4eb7f7e0a to your computer and use it in GitHub Desktop.
{
"owner": "choojs"
}
query projectTags($owner: String!) {
organization(login: $owner) {
repositories(last: 100) {
nodes {
name
tags: refs(refPrefix: "refs/tags/", last: 10) {
nodes {
name
target {
# commitResourcePath
... on Tag {
tagger {
date
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment