Automattic\WooCommerce\Vendor\GraphQL\Type\Definition

ResolveInfo::lookAheadpublicWC 1.0

Method of the class: ResolveInfo{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ResolveInfo = new ResolveInfo();
$ResolveInfo->lookAhead( $options ): QueryPlan;
$options(QueryPlanOptions)
.
Default: []

ResolveInfo::lookAhead() code WC 10.9.1

public function lookAhead(array $options = []): QueryPlan
{
    return new QueryPlan(
        $this->parentType,
        $this->schema,
        $this->fieldNodes,
        $this->variableValues,
        $this->fragments,
        $options
    );
}