Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_group_contacts.query.graphql « graphql « components « contacts « crm « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
      }
    }
  }
}