diff --git a/packages/gql_gitlab/lib/project.graphql b/packages/gql_gitlab/lib/project.graphql index 7c30537..9fd748d 100644 --- a/packages/gql_gitlab/lib/project.graphql +++ b/packages/gql_gitlab/lib/project.graphql @@ -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 + } } }