Add new plugin stars (#36)

This commit is contained in:
Simon Lecoq
2021-01-02 23:41:36 +01:00
committed by GitHub
parent a010a333a1
commit 11cb6f042e
12 changed files with 281 additions and 4 deletions

View File

@@ -0,0 +1,31 @@
query Starred {
user(login: "$login") {
starredRepositories(first: $limit, orderBy: {field: STARRED_AT, direction: DESC}) {
edges {
starredAt
node {
description
forkCount
isFork
issues {
totalCount
}
nameWithOwner
openGraphImageUrl
licenseInfo {
nickname
name
}
pullRequests {
totalCount
}
stargazerCount
primaryLanguage {
color
name
}
}
}
}
}
}