Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_projects.query.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0a3cb0ee212c32b4c645f1e60ee4c38375b0c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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
      }
    }
  }
}