summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/crm/contacts/components/graphql/get_group_contacts_count_by_state.graphql
blob: 6b591240096911bed8c38ce9cab8447c1650f032 (plain)
1
2
3
4
5
6
7
8
9
10
11
query contactsCountByState($groupFullPath: ID!, $searchTerm: String) {
  group(fullPath: $groupFullPath) {
    __typename
    id
    contactStateCounts(search: $searchTerm) {
      all
      active
      inactive
    }
  }
}