Automattic\WooCommerce\Vendor\GraphQL\Type
Introspection::isIntrospectionType
Method of the class: Introspection{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = Introspection::isIntrospectionType( $type ): bool;
- $type(Type&NamedType) (required)
- .
Introspection::isIntrospectionType() Introspection::isIntrospectionType code WC 10.9.1
public static function isIntrospectionType(NamedType $type): bool
{
return in_array($type->name, self::TYPE_NAMES, true);
}