Skip to content

Draft: Resolve "GraphQL mutation for updating organization"

What does this MR do and why?

Create GraphQL mutation to update an Organization.

Screenshots or screen recordings

How to set up and validate locally

  1. Run the following mutation: http://127.0.0.1:3000/-/graphql-explorer
mutation {
  organizationUpdate(input: {name: "test", path: "test"}) {
    organization{
      name
    }
  }
}

You should see a new organization created

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Related to #419608 (closed)

Merge request reports