Files
GermanAirlinesVA-GraphQL/vendor/webonyx/graphql-php/src/Language/AST/FieldDefinitionNode.php
T
Your Name aae17f10a6 new Deps
2021-07-26 19:46:18 +02:00

27 lines
504 B
PHP

<?php
declare(strict_types=1);
namespace GraphQL\Language\AST;
class FieldDefinitionNode extends Node
{
/** @var string */
public $kind = NodeKind::FIELD_DEFINITION;
/** @var NameNode */
public $name;
/** @var NodeList<InputValueDefinitionNode> */
public $arguments;
/** @var NamedTypeNode|ListTypeNode|NonNullTypeNode */
public $type;
/** @var NodeList<DirectiveNode> */
public $directives;
/** @var StringValueNode|null */
public $description;
}