You are here

public function CacheableValue::getValue in GraphQL 8.3

Get the wrapped value.

Return value

mixed

Overrides ValueWrapperInterface::getValue

File

src/GraphQL/Cache/CacheableValue.php, line 59

Class

CacheableValue
Wrapper class for transporting cache metadata for resolved values.

Namespace

Drupal\graphql\GraphQL\Cache

Code

public function getValue() {
  return $this->value;
}