Created
February 8, 2017 05:47
-
-
Save banderson/718730909a33e6bde6ff5fbc68a9159f to your computer and use it in GitHub Desktop.
Fetch github project cards via graphql
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
{ | |
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 | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://developer.github.com/early-access/graphql/explorer/