summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/crm/components/queries/get_group_organizations.query.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/crm/components/queries/get_group_organizations.query.graphql')
-rw-r--r--app/assets/javascripts/crm/components/queries/get_group_organizations.query.graphql15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/assets/javascripts/crm/components/queries/get_group_organizations.query.graphql b/app/assets/javascripts/crm/components/queries/get_group_organizations.query.graphql
new file mode 100644
index 00000000000..7c4ec6ec585
--- /dev/null
+++ b/app/assets/javascripts/crm/components/queries/get_group_organizations.query.graphql
@@ -0,0 +1,15 @@
+query organizations($groupFullPath: ID!) {
+ group(fullPath: $groupFullPath) {
+ __typename
+ id
+ organizations {
+ nodes {
+ __typename
+ id
+ name
+ defaultRate
+ description
+ }
+ }
+ }
+}