summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/crm/organizations/components/graphql/get_group_organizations.query.graphql
blob: e8d8109431e5bdb89d7f7637c90d0e7a4c9fd697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "./crm_organization_fields.fragment.graphql"

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