summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/crm/organizations/components/graphql/get_group_organizations.query.graphql
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
      }
    }
  }
}