API Stability Short-Term

The removeLimitWithId() GraphQL mutation is used to remove a limit using its unique identifier in the organization.

For more information on query quotas, see the Query Quotas documentation page. You may also want to look at Limits & Standards for related information.

Syntax

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

graphql
removeLimitWithId(
      limitId: string!
   ): boolean!

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

Show:
graphql
mutation {
  removeLimitWithId(
    limitId: "abc123"
  )
}
Example Responses
Show:
json
{
  "data": {
    "removeLimitWithId": true
  }
}

There are no special datatypes for this mutation field.