summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/new_resource_dropdown/graphql/search_user_group_projects_with_merge_requests_enabled.query.graphql
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
      }
    }
  }
}