debian-mirror-gitlab/app/assets/javascripts/boards/graphql/group_projects.query.graphql
2021-06-08 01:23:25 +05:30

18 lines
415 B
GraphQL

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