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

update_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: a4c46d1f0fab3e5ebd29e92f6406d46ce63a7b6c (plain)
1
2
3
4
5
6
7
8
9
10
#import "./crm_organization_fields.fragment.graphql"

mutation updateOrganization($input: CustomerRelationsOrganizationUpdateInput!) {
  customerRelationsOrganizationUpdate(input: $input) {
    organization {
      ...OrganizationFragment
    }
    errors
  }
}