API Stability Deprecated

The markLimitDeleted() GraphQL mutation is used to set a limits deleted mark. This mutation field is deprecated and will be removed at the earliest in version 1.228.

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

graphql
markLimitDeleted(
     input: MarkLimitDeletedInput!
   ): boolean!

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

Show:
graphql
mutation {
  markLimitDeleted(input: 
    { limitName: "end-of-the-line",
      deleted: true
    } )
}
Example Responses
Show:
json
{
  "data": {
    "markLimitDeleted": true
  }
}

Given Datatypes

For MarkLimitDeletedInput, there are a couple of parameters. They're described below:

Table: MarkLimitDeletedInput

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
deletedbooleanyes DeprecatedWhether the input was deleted.
limitNamestringyes DeprecatedThe name of the limit.