Automattic\WooCommerce\Vendor\GraphQL\Server

ServerConfig::setRootValuepublicWC 1.0

Method of the class: ServerConfig{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ServerConfig = new ServerConfig();
$ServerConfig->setRootValue( $rootValue ): self;
$rootValue(mixed|callable) (required)
.

ServerConfig::setRootValue() code WC 10.8.1

public function setRootValue($rootValue): self
{
    $this->rootValue = $rootValue;

    return $this;
}