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

create_contact.mutation.graphql « queries « components « crm « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0192459609eb1bc1383e4ccb6080c7a2da7e9eb (plain)
1
2
3
4
5
6
7
8
9
10
#import "./crm_contact_fields.fragment.graphql"

mutation createContact($input: CustomerRelationsContactCreateInput!) {
  customerRelationsContactCreate(input: $input) {
    contact {
      ...ContactFragment
    }
    errors
  }
}