mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-27 18:11:54 -05:00
21 lines
327 B
GraphQL
21 lines
327 B
GraphQL
query Project($fullPath: String!) {
|
|
project(fullPath: $fullPath) {
|
|
name
|
|
avatarUrl
|
|
description
|
|
starCount
|
|
forksCount
|
|
visibility
|
|
webUrl
|
|
issuesEnabled
|
|
openIssuesCount
|
|
mergeRequestsEnabled
|
|
createdAt
|
|
lastActivityAt
|
|
statistics {
|
|
commitCount
|
|
repositorySize
|
|
}
|
|
}
|
|
}
|