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