public function GraphQLConfigOverrides::getCacheableMetadata in GraphQL 8.3
Gets the cacheability metadata associated with the config factory override.
Parameters
string $name: The name of the configuration override to get metadata for.
Return value
\Drupal\Core\Cache\CacheableMetadata A cacheable metadata object.
Overrides ConfigFactoryOverrideInterface::getCacheableMetadata
File
- src/
Config/ GraphQLConfigOverrides.php, line 79
Class
- GraphQLConfigOverrides
- GraphQL config overrides.
Namespace
Drupal\graphql\ConfigCode
public function getCacheableMetadata($name) {
return new CacheableMetadata();
}