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

18 lines
266 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
2016-04-23 23:08:46 +06:00
class FragmentSpread extends Node implements Selection
2015-07-15 23:05:46 +06:00
{
2016-11-10 17:25:54 +00:00
public $kind = NodeType::FRAGMENT_SPREAD;
2015-07-15 23:05:46 +06:00
/**
* @var Name
*/
public $name;
2015-07-15 23:05:46 +06:00
/**
* @var array<Directive>
*/
public $directives;
}