Skip to content

Instantly share code, notes, and snippets.

@DSchau
Created August 13, 2018 14:28
Show Gist options
  • Select an option

  • Save DSchau/e4d8e062def568e59e65b161ba3d4427 to your computer and use it in GitHub Desktop.

Select an option

Save DSchau/e4d8e062def568e59e65b161ba3d4427 to your computer and use it in GitHub Desktop.
Get the latst repositories for my user
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