summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/crm/components/queries/create_organization.mutation.graphql
blob: 2cc7e53ee9b2f0b9316f7fe4651658551ac34314 (plain)
1
2
3
4
5
6
7
8
9
10
#import "./crm_organization_fields.fragment.graphql"

mutation createOrganization($input: CustomerRelationsOrganizationCreateInput!) {
  customerRelationsOrganizationCreate(input: $input) {
    organization {
      ...OrganizationFragment
    }
    errors
  }
}