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

get_group_organizations_count_by_state.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: fb6064e171f446091d51e62e61a1b19c84b62bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
query organizationsCountByState($groupFullPath: ID!, $searchTerm: String) {
  group(fullPath: $groupFullPath) {
    __typename
    id
    organizationStateCounts(search: $searchTerm) {
      all
      active
      inactive
    }
  }
}