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

18 lines
277 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
class FragmentSpreadNode extends Node implements SelectionNode
2015-07-15 23:05:46 +06:00
{
public $kind = NodeKind::FRAGMENT_SPREAD;
2015-07-15 23:05:46 +06:00
/**
* @var NameNode
*/
public $name;
2015-07-15 23:05:46 +06:00
/**
* @var DirectiveNode[]
2015-07-15 23:05:46 +06:00
*/
public $directives;
}