API Stability Long-Term

The removeLimit() GraphQL mutation is used to remove a limit in a given organization in LogScale. This mutation field is deprecated, though. Use removeLimitWithId() instead.

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 removeLimit() mutation field:

graphql
removeLimit(
      input: RemoveLimitInput!
   ): boolean!

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

Show:
graphql
mutation {
  removeLimit(input: 
       {limitName: "limiter1"} )
}
Example Responses
Show:
json
{
  "data": {
    "removeLimit": true
  }
}

Given Datatypes

For the given datatype, RemoveLimitInput, there are several parameters that may be given. Below is a list of them along with their datatypes and a description of each:

Table: RemoveLimitInput

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 19, 2024
limitNamestringyes DeprecatedThe name of the limit to remove.