Skip to content

Instantly share code, notes, and snippets.

@banderson
Created February 8, 2017 05:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save banderson/718730909a33e6bde6ff5fbc68a9159f to your computer and use it in GitHub Desktop.
Save banderson/718730909a33e6bde6ff5fbc68a9159f to your computer and use it in GitHub Desktop.
Fetch github project cards via graphql
{
repository(owner: "banderson", name: "life") {
projects(first: 30) {
totalCount
edges {
node {
name
number
url
columns(first: 30) {
nodes {
cards(first: 30) {
edges {
node {
content {
... on Issueish {
title
}
}
note
state
}
}
}
}
}
}
}
}
}
}
@banderson
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment