10 lines
232 B
GraphQL
10 lines
232 B
GraphQL
#import "./crm_contact_fields.fragment.graphql"
|
|
|
|
mutation createContact($input: CustomerRelationsContactCreateInput!) {
|
|
customerRelationsContactCreate(input: $input) {
|
|
contact {
|
|
...ContactFragment
|
|
}
|
|
errors
|
|
}
|
|
}
|