Skip to content

Instantly share code, notes, and snippets.

@bianpengyuan
Created December 2, 2020 19:01
Show Gist options
  • Save bianpengyuan/59f5f81ca9f4aaacbd4103125114cbab to your computer and use it in GitHub Desktop.
Save bianpengyuan/59f5f81ca9f4aaacbd4103125114cbab to your computer and use it in GitHub Desktop.
Github Graph SQL query
{
repository(name: "istio", owner: "istio") {
milestone(number: 22) {
title
issues(first: 1000, filterBy: {states: OPEN}) {
edges {
node {
title
url
state
projectCards {
nodes {
column {
name
}
}
}
lastEditedAt
assignees(first: 10) {
edges {
node {
email
name
login
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment