Files
metrics/source/plugins/stargazers/queries/stargazers.graphql
2021-01-30 12:31:09 +01:00

10 lines
227 B
GraphQL

query StargazersDefault {
repository(name: "$repository", owner: "$login") {
stargazers($after first: 100, orderBy: {field: STARRED_AT, direction: ASC}) {
edges {
starredAt
cursor
}
}
}
}