summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/crm/components/queries/create_contact.mutation.graphql
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
  }
}