debian-mirror-gitlab/app/assets/javascripts/crm/components/queries/create_contact.mutation.graphql

11 lines
232 B
GraphQL
Raw Normal View History

2022-01-26 12:08:38 +05:30
#import "./crm_contact_fields.fragment.graphql"
mutation createContact($input: CustomerRelationsContactCreateInput!) {
customerRelationsContactCreate(input: $input) {
contact {
...ContactFragment
}
errors
}
}