summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/analytics/shared/graphql/projects.query.graphql
blob: b870ed4dcbfcb6715b5093cef9cec58a5aa69e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query analyticsGetGroupProjects(
  $groupFullPath: ID!
  $search: String!
  $first: Int!
  $includeSubgroups: Boolean = false
) {
  group(fullPath: $groupFullPath) {
    projects(
      search: $search
      first: $first
      includeSubgroups: $includeSubgroups
      sort: SIMILARITY
    ) {
      nodes {
        id
        name
        avatarUrl
        fullPath
      }
    }
  }
}