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

search_projects.query.graphql « queries « issues_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df1f330139a33172553722fa25257f7b992f9095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query searchProjects($fullPath: ID!, $search: String) {
  group(fullPath: $fullPath) {
    projects(search: $search, includeSubgroups: true) {
      nodes {
        id
        name
        nameWithNamespace
        webUrl
      }
    }
  }
}