API Stability Short-Term

The updateRepositoryLimitId() GraphQL mutation may be used to change the limit identifier of a repository.

Syntax

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

graphql
updateRepositoryLimitId(
      input: UpdateRepoLimitIdInputObject!
   ): boolean!

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

Show:
graphql
mutation {
  updateRepositoryLimitId( input:
    {
      dataspaceId: "cfeQriTyDwPerwIPCGw505lp",
      limitId: "def456"
    }
  ) 
}
Example Responses
Show:
json
{
  "data": {
    "updateRepositoryLimitId": true
  }
}

Given Datatypes

For UpdateRepoLimitIdInputObject, there are a couple of parameters. Below is a list of them along with a description of each:

Table: UpdateRepoLimitIdInputObject

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: Feb 26, 2025
dataspaceIdstringyes  The dataspace identifier.
limitIdstringyes  The unique identifier of the limit to use.