feat(plugins/repositories): add plugin_repositories_pinned (#1100)

This commit is contained in:
Simon Lecoq
2022-06-15 19:20:12 +02:00
committed by GitHub
parent bb7909bd74
commit 9032d357ff
6 changed files with 111 additions and 13 deletions

View File

@@ -0,0 +1,34 @@
query RepositoriesPinned {
user(login: "$login") {
pinnedItems(types: REPOSITORY, first: $limit) {
edges {
node {
... on Repository {
createdAt
description
forkCount
isFork
issues {
totalCount
}
nameWithOwner
openGraphImageUrl
licenseInfo {
nickname
spdxId
name
}
pullRequests {
totalCount
}
stargazerCount
primaryLanguage {
color
name
}
}
}
}
}
}
}