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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
395 B
GraphQL
Raw Normal View History

2021-12-11 22:18:48 +05:30
query analyticsGetGroupProjects(
2021-09-30 23:02:18 +05:30
$groupFullPath: ID!
$search: String!
$first: Int!
$includeSubgroups: Boolean = false
) {
group(fullPath: $groupFullPath) {
2022-01-26 12:08:38 +05:30
id
2021-09-30 23:02:18 +05:30
projects(
search: $search
first: $first
includeSubgroups: $includeSubgroups
sort: SIMILARITY
) {
nodes {
id
name
avatarUrl
fullPath
}
}
}
}