GraphQL\Executor\ExecutionContext::__construct PHP Méthode

__construct() public méthode

public __construct ( $schema, $fragments, $root, $contextValue, $operation, $variables, $errors )
    public function __construct($schema, $fragments, $root, $contextValue, $operation, $variables, $errors)
    {
        $this->schema = $schema;
        $this->fragments = $fragments;
        $this->rootValue = $root;
        $this->contextValue = $contextValue;
        $this->operation = $operation;
        $this->variableValues = $variables;
        $this->errors = $errors ?: [];
    }
ExecutionContext