debian-mirror-gitlab/app/assets/javascripts/analytics/shared/graphql/projects.query.graphql
2021-09-30 23:02:18 +05:30

22 lines
379 B
GraphQL

query getGroupProjects(
$groupFullPath: ID!
$search: String!
$first: Int!
$includeSubgroups: Boolean = false
) {
group(fullPath: $groupFullPath) {
projects(
search: $search
first: $first
includeSubgroups: $includeSubgroups
sort: SIMILARITY
) {
nodes {
id
name
avatarUrl
fullPath
}
}
}
}