From 4fe46b274aae31cd1b97cc61cf2b13c7cf5441bc Mon Sep 17 00:00:00 2001 From: Rongjian Zhang Date: Sun, 2 Oct 2022 02:22:31 +0800 Subject: [PATCH] chore: update project query --- packages/gql_gitlab/lib/project.graphql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 + } } }