Created
August 13, 2018 14:28
-
-
Save DSchau/e4d8e062def568e59e65b161ba3d4427 to your computer and use it in GitHub Desktop.
Get the latst repositories for my user
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
| query GetLatestRepositories { | |
| user(login:"dschau") { | |
| repositories(first:6, isFork:false, orderBy:{field:STARGAZERS, direction:DESC}) { | |
| edges { | |
| node { | |
| id | |
| name | |
| descriptionHTML | |
| createdAt | |
| url | |
| forkCount | |
| stargazers { | |
| totalCount | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment