Automattic\WooCommerce\Vendor\GraphQL

GraphQL::setDefaultArgsMapperpublic staticWC 1.0

Set default args mapper implementation.

Method of the class: GraphQL{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = GraphQL::setDefaultArgsMapper( $fn ): void;
$fn(callable) (required)
.

GraphQL::setDefaultArgsMapper() code WC 10.9.1

public static function setDefaultArgsMapper(callable $fn): void
{
    Executor::setDefaultArgsMapper($fn);
}