Automattic\WooCommerce\Vendor\GraphQL\Type

Introspection::isIntrospectionTypepublic staticWC 1.0

Метод класса: Introspection{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = Introspection::isIntrospectionType( $type ): bool;
$type(Type&NamedType) (обязательный)
.

Код Introspection::isIntrospectionType() WC 10.9.1

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