Add Stargazers plugin (#37)

This commit is contained in:
Simon Lecoq
2021-01-05 12:39:04 +01:00
committed by GitHub
parent 97c28b88fc
commit b06d9ff898
15 changed files with 295 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
query Stargazers {
repository(name: "$repository", owner: "$login") {
stargazers($after first: 100, orderBy: {field: STARRED_AT, direction: ASC}) {
edges {
starredAt
cursor
}
}
}
}