API Stability Preview

The setGlobalDefaultCachePolicy() GraphQL mutation field is used to set the global default cache policy. This policy will be applied to a repository if neither a repository or organization cache policy is set. This field is not yet available. It's described here as a preview. Cache policies are a limited feature and is subject to change.

For information on configuring a cache, see the CACHE_STORAGE_DIRECTORY reference page.

Syntax

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

graphql
setGlobalDefaultCachePolicy(
     input: SetGlobalDefaultCachePolicyInput!
   ): boolean!

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

Show:
graphql
mutation {
  setGlobalDefaultCachePolicy( input:
    { policy: {prioritizeMillis: 1000 }
    }
  )
}
Example Responses
Show:
json
{
  "data": {
    "setGlobalDefaultCachePolicy": true
  }
}

Given Datatypes

SetGlobalDefaultCachePolicyInput has one parameter and one sub-parameter. See the table below and the link to the sub-parameter table:

Table: SetGlobalDefaultCachePolicyInput

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: Oct 4, 2024
policyCachePolicyInput  PreviewThe global default cache policy to set. See CachePolicyInput.