Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_organization.mutation.graphql « graphql « components « organizations « crm « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
  }
}