API Stability Short-Term

The removeQueryQuotaUserSettings() GraphQL mutation field is used to remove query quota settings for a given user.

For more information on query quotas, see the Query Quotas documentation page.

Syntax

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

graphql
removeQueryQuotaUserSettings(
     username: string!
   ): boolean!

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

Show:
graphql
mutation {
  removeQueryQuotaUserSettings(
    username: "wilbur"
  )
}
Example Responses
Show:
json
{
  "data": {
    "removeQueryQuotaUserSettings": true
  }
}

There are no special datatypes for this mutation field.