You are here

public function Value::__construct in GraphQL 8.4

Value constructor.

Parameters

mixed $value:

File

src/GraphQL/Resolver/Value.php, line 27

Class

Value
Resolves by returning the fixed value itself.

Namespace

Drupal\graphql\GraphQL\Resolver

Code

public function __construct($value) {
  $this->value = $value;
}