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

28 lines
426 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
class FragmentDefinition extends Node implements Definition, HasSelectionSet
2015-07-15 23:05:46 +06:00
{
2016-11-10 17:25:54 +00:00
public $kind = NodeType::FRAGMENT_DEFINITION;
2015-07-15 23:05:46 +06:00
/**
* @var Name
*/
public $name;
2015-07-15 23:05:46 +06:00
/**
* @var NamedType
2015-07-15 23:05:46 +06:00
*/
public $typeCondition;
/**
* @var array<Directive>
*/
public $directives;
/**
* @var SelectionSet
*/
public $selectionSet;
}