mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-23 08:13:50 +03:00
28 lines
445 B
PHP
28 lines
445 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
class FragmentDefinitionNode extends Node implements DefinitionNode, HasSelectionSet
|
|
{
|
|
public $kind = NodeKind::FRAGMENT_DEFINITION;
|
|
|
|
/**
|
|
* @var NameNode
|
|
*/
|
|
public $name;
|
|
|
|
/**
|
|
* @var NamedTypeNode
|
|
*/
|
|
public $typeCondition;
|
|
|
|
/**
|
|
* @var DirectiveNode[]
|
|
*/
|
|
public $directives;
|
|
|
|
/**
|
|
* @var SelectionSetNode
|
|
*/
|
|
public $selectionSet;
|
|
}
|