Sort notable contributions by number of stars (#293)

This commit is contained in:
Boris K
2021-05-12 20:06:03 +02:00
committed by GitHub
parent d6f2910c9c
commit 71c0b4e9fd

View File

@@ -1,6 +1,6 @@
query NotableContributions { query NotableContributions {
user(login: "$login") { user(login: "$login") {
repositoriesContributedTo($after first: $repositories, contributionTypes: COMMIT) { repositoriesContributedTo($after first: $repositories, contributionTypes: COMMIT, orderBy: { field: STARGAZERS, direction: DESC }) {
edges { edges {
cursor cursor
node { node {
@@ -23,4 +23,4 @@ query NotableContributions {
} }
} }
} }
} }