Automattic\WooCommerce\Vendor\GraphQL\Language\AST
FieldDefinitionNode{}└─ Node
Хуков нет.
Использование
$FieldDefinitionNode = new FieldDefinitionNode(); // use class methods
Методы
Нет Методов у класса.Код FieldDefinitionNode{} FieldDefinitionNode{} WC 11.0.1
class FieldDefinitionNode extends Node
{
public string $kind = NodeKind::FIELD_DEFINITION;
public NameNode $name;
/** @var NodeList<InputValueDefinitionNode> */
public NodeList $arguments;
/** @var NamedTypeNode|ListTypeNode|NonNullTypeNode */
public TypeNode $type;
/** @var NodeList<DirectiveNode> */
public NodeList $directives;
public ?StringValueNode $description = null;
}