API Stability Preview

The unlinkChildOrganization() GraphQL mutation may be used to unlink a child organization from a parent.

Syntax

Below is the syntax for the unlinkChildOrganization() mutation field:

graphql
unlinkChildOrganization(
      childId: string!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  unlinkChildOrganization(
      childId: "123abc" 
  )
}
Example Responses
Show:
json
{
  "data": {
    "unlinkChildOrganization": true
  }
}

There are no special datatypes for this mutation field.