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: c5732bbaff30c900a0d1f96a3cb8b9c697eb4cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"

query boardsGetGroupProjects($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
      }
    }
  }
}