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

search_user_group_projects_with_merge_requests_enabled.query.graphql « graphql « new_resource_dropdown « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 578914dbbaf2301e4a39882fca8240cc49144d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query searchUserGroupProjectsWithMergeRequestsEnabled($fullPath: ID!, $search: String) {
  group(fullPath: $fullPath) {
    id
    projects(
      search: $search
      withMergeRequestsEnabled: true
      includeSubgroups: true
      sort: ACTIVITY_DESC
    ) {
      nodes {
        id
        name
        nameWithNamespace
        webUrl
      }
    }
  }
}