chore: update project query

This commit is contained in:
Rongjian Zhang 2022-10-02 02:22:31 +08:00
parent 048d35112b
commit 4fe46b274a
1 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,20 @@
query Project($fullPath: String!) {
project(fullPath: $fullPath) {
name
avatarUrl
description
starCount
forksCount
visibility
webUrl
issuesEnabled
openIssuesCount
mergeRequestsEnabled
createdAt
lastActivityAt
statistics {
commitCount
repositorySize
}
}
}