Last active
September 21, 2020 22:33
-
-
Save edwindotcom/a693340dcc26a2e962ffff66a369647f to your computer and use it in GitHub Desktop.
github graphql - get logged in users repos
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
{ | |
viewer { | |
repositories(first: 10) { | |
totalCount | |
nodes { | |
name | |
url | |
nameWithOwner | |
} | |
pageInfo { | |
endCursor | |
hasNextPage | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment