Add new Repositories plugin (#431) [skip ci]

This commit is contained in:
Simon Lecoq
2021-07-30 23:05:27 +02:00
committed by GitHub
parent 88f9e1a41f
commit 012748529f
9 changed files with 251 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
query RepositoriesRepository {
repository(owner: "$owner", name: "$name") {
createdAt
description
forkCount
isFork
issues {
totalCount
}
nameWithOwner
openGraphImageUrl
licenseInfo {
nickname
spdxId
name
}
pullRequests {
totalCount
}
stargazerCount
primaryLanguage {
color
name
}
}
}