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

issue_crm_contacts.fragment.graphql « queries « crm_contacts « components « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 750e1f1d1af851ba74e1d33353a8dba1d8662c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fragment CrmContacts on Issue {
  id
  customerRelationsContacts {
    nodes {
      id
      firstName
      lastName
      email
      phone
      description
      organization {
        id
        name
      }
    }
  }
}