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

get_projects.query.graphql « queries « graphql « branches « jira_connect « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32fbc1113bc79fb23a5c505e7cc5ebf53e2c263f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"

query jiraGetProjects(
  $search: String!
  $after: String = ""
  $first: Int!
  $searchNamespaces: Boolean = false
  $sort: String
  $membership: Boolean = true
) {
  projects(
    search: $search
    after: $after
    first: $first
    membership: $membership
    searchNamespaces: $searchNamespaces
    sort: $sort
  ) {
    nodes {
      id
      name
      nameWithNamespace
      fullPath
      avatarUrl
      path
      repository {
        empty
      }
    }
    pageInfo {
      ...PageInfo
    }
  }
}