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