graphql-php/src/Language/AST/FragmentDefinitionNode.php

28 lines
445 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
class FragmentDefinitionNode extends Node implements DefinitionNode, HasSelectionSet
2015-07-15 23:05:46 +06:00
{
public $kind = NodeKind::FRAGMENT_DEFINITION;
2015-07-15 23:05:46 +06:00
/**
* @var NameNode
*/
public $name;
2015-07-15 23:05:46 +06:00
/**
* @var NamedTypeNode
2015-07-15 23:05:46 +06:00
*/
public $typeCondition;
/**
* @var DirectiveNode[]
2015-07-15 23:05:46 +06:00
*/
public $directives;
/**
* @var SelectionSetNode
2015-07-15 23:05:46 +06:00
*/
public $selectionSet;
}