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

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