Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/webonyx/graphql-php/src/Language/AST/
Upload File :
Current File : //home/rtorresani/www/vendor/webonyx/graphql-php/src/Language/AST/InputObjectTypeExtensionNode.php

<?php declare(strict_types=1);

namespace GraphQL\Language\AST;

class InputObjectTypeExtensionNode extends Node implements TypeExtensionNode
{
    public string $kind = NodeKind::INPUT_OBJECT_TYPE_EXTENSION;

    public NameNode $name;

    /** @var NodeList<DirectiveNode> */
    public NodeList $directives;

    /** @var NodeList<InputValueDefinitionNode> */
    public NodeList $fields;

    public function getName(): NameNode
    {
        return $this->name;
    }
}