summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/group_projects.query.graphql
blob: 1afa6e4854776aafd7e200a7705a1203348c8ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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) {
      nodes {
        id
        name
        fullPath
        nameWithNamespace
      }
      pageInfo {
        ...PageInfo
      }
    }
  }
}