Automattic\WooCommerce\Vendor\GraphQL\Type

Introspection::isIntrospectionTypepublic staticWC 1.0

Method of the class: Introspection{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = Introspection::isIntrospectionType( $type ): bool;
$type(Type&NamedType) (required)
.

Introspection::isIntrospectionType() code WC 10.9.1

public static function isIntrospectionType(NamedType $type): bool
{
    return in_array($type->name, self::TYPE_NAMES, true);
}