feat(plugins/notable): add issues, prs and relative stars badges (#841)

This commit is contained in:
Simon Lecoq
2022-02-04 05:44:40 +01:00
committed by GitHub
parent 850dce95aa
commit 0166b64986
8 changed files with 141 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
query NotableIssues {
user(login: "$login") {
$type($after first: 100, orderBy: {field: CREATED_AT, direction: DESC}) {
totalCount
edges {
cursor
node {
repository {
nameWithOwner
}
}
}
}
}
}