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

get_group_organizations.query.graphql « queries « components « crm « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c4ec6ec585d87844f0174f1d9f216a3f47bd1cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query organizations($groupFullPath: ID!) {
  group(fullPath: $groupFullPath) {
    __typename
    id
    organizations {
      nodes {
        __typename
        id
        name
        defaultRate
        description
      }
    }
  }
}