summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/crm/components/queries/get_group_contacts.query.graphql
blob: f6acd258585fbd75edf405b6e209a131626833a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query contacts($groupFullPath: ID!) {
  group(fullPath: $groupFullPath) {
    __typename
    id
    contacts {
      nodes {
        __typename
        id
        firstName
        lastName
        email
        phone
        description
        organization {
          __typename
          id
          name
        }
      }
    }
  }
}