gitlab-org--gitlab-foss/app/assets/javascripts/boards/graphql/group_projects.query.graphql

20 lines
429 B
GraphQL

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