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

23 lines
388 B
GraphQL

query GistsDefault {
user(login: "$login") {
gists($after first: 100, orderBy: {field: UPDATED_AT, direction: DESC}) {
edges {
cursor
}
totalCount
nodes {
stargazerCount
isFork
forks {
totalCount
}
files {
name
}
comments {
totalCount
}
}
}
}
}