aboutsummaryrefslogtreecommitdiff
path: root/graphql/projects_query.graphql
blob: ae1295734651390ed194e8b4e247cf71491f94c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query Projects($scope: String!, $after: String!) {
  projects(membership: true, searchNamespaces: true, search: $scope, after: $after) {
    nodes {
      id
      name
      fullPath
      sshUrlToRepo
      httpUrlToRepo
    }

    pageInfo {
      endCursor
      hasNextPage
    }
  }
}