debian-mirror-gitlab/app/assets/javascripts/analytics/shared/graphql/projects.query.graphql

23 lines
379 B
GraphQL
Raw Normal View History

2021-09-30 23:02:18 +05:30
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
}
}
}
}