API Stability Short-Term

The rollbackOrganization() GraphQL mutation may be used to rollback an organization with the given identifier in LogScale.

For more information on organization settings, see the Organization Settings documentation page.

Syntax

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

graphql
rollbackOrganization(
     organizationId: string!
   ): boolean!

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

Show:
graphql
mutation {
  rollbackOrganization(
     organizationId: "abc123"
  )
}
Example Responses
Show:
json
{
  "data": {
    "rollbackOrganization": true
  }
}

There are no special datatypes for this mutation field.