API Stability Long-Term

The setLimitDisplayName() GraphQL mutation is used to remove a limit in the given organization.

Syntax

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

graphql
setLimitDisplayName(
      input: SetLimitDisplayNameInput!
   ): boolean!

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

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

Given Datatypes

SetLimitDisplayNameInput has two parameters. Below is a list of them along with a description of each:

Table: SetLimitDisplayNameInput

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
displayNamestring   The display name of the set limit.
limitNamestringyes  The name of the limit.