Automattic\WooCommerce\Vendor\GraphQL\Type\Definition

InputObjectField::defaultValueExistspublicWC 1.0

Method of the class: InputObjectField{}

No Hooks.

Returns

null. Nothing (null).

Usage

$InputObjectField = new InputObjectField();
$InputObjectField->defaultValueExists(): bool;

InputObjectField::defaultValueExists() code WC 10.9.4

public function defaultValueExists(): bool
{
    return array_key_exists('defaultValue', $this->config);
}