debian-mirror-gitlab/app/assets/javascripts/crm/components/queries/create_contact.mutation.graphql
2022-01-26 12:08:38 +05:30

10 lines
232 B
GraphQL

#import "./crm_contact_fields.fragment.graphql"
mutation createContact($input: CustomerRelationsContactCreateInput!) {
customerRelationsContactCreate(input: $input) {
contact {
...ContactFragment
}
errors
}
}