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

crm_contact_fields.fragment.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: cef4083b44687850709bf8f65ea857631a5600f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fragment ContactFragment on CustomerRelationsContact {
  __typename
  id
  firstName
  lastName
  email
  phone
  description
  organization {
    __typename
    id
    name
  }
}