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

get_group_organizations.query.graphql « graphql « components « organizations « crm « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97b75091cac5680fdc085f3d9cf5c54dd8ee3efc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "./crm_organization_fields.fragment.graphql"

query organizations($groupFullPath: ID!) {
  group(fullPath: $groupFullPath) {
    id
    organizations {
      nodes {
        ...OrganizationFragment
      }
    }
  }
}