summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues/list/queries/search_projects.query.graphql
blob: 2fd374892346e90a31e6253559f519e3ae05cb76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query searchProjects($fullPath: ID!, $search: String) {
  group(fullPath: $fullPath) {
    id
    projects(search: $search, withIssuesEnabled: true, includeSubgroups: true) {
      nodes {
        id
        name
        nameWithNamespace
        webUrl
      }
    }
  }
}