gitlab/ee/app/assets/javascripts/analytics/repository_analytics/graphql/queries/get_group_projects.query.graphql
2021-11-08 04:55:59 +00:00

16 lines
343 B
GraphQL

#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"
query repoAnalyticsGetGroupProjects($groupFullPath: ID!, $after: String) {
group(fullPath: $groupFullPath) {
projects(hasCodeCoverage: true, after: $after, first: 100) {
nodes {
name
id
}
pageInfo {
...PageInfo
}
}
}
}