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

32 lines
679 B
PHP

<?php
declare(strict_types=1);
namespace GraphQL\Language\AST;
class FragmentDefinitionNode extends Node implements ExecutableDefinitionNode, HasSelectionSet
{
/** @var string */
public $kind = NodeKind::FRAGMENT_DEFINITION;
/** @var NameNode */
public $name;
/**
* Note: fragment variable definitions are experimental and may be changed
* or removed in the future.
*
* @var NodeList<VariableDefinitionNode>
*/
public $variableDefinitions;
/** @var NamedTypeNode */
public $typeCondition;
/** @var NodeList<DirectiveNode> */
public $directives;
/** @var SelectionSetNode */
public $selectionSet;
}