debian-mirror-gitlab/app/assets/javascripts/boards/graphql/group_projects.query.graphql

20 lines
428 B
GraphQL
Raw Normal View History

2021-03-08 18:12:59 +05:30
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"
2021-12-11 22:18:48 +05:30
query boardsGetGroupProjects($fullPath: ID!, $search: String, $after: String) {
2021-03-08 18:12:59 +05:30
group(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2021-06-08 01:23:25 +05:30
projects(search: $search, after: $after, first: 100, includeSubgroups: true) {
2021-03-08 18:12:59 +05:30
nodes {
id
name
fullPath
nameWithNamespace
2021-04-17 20:07:23 +05:30
archived
2021-03-08 18:12:59 +05:30
}
pageInfo {
...PageInfo
}
}
}
}