mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-23 08:13:50 +03:00
18 lines
266 B
PHP
18 lines
266 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
class FragmentSpread extends Node implements Selection
|
|
{
|
|
public $kind = NodeType::FRAGMENT_SPREAD;
|
|
|
|
/**
|
|
* @var Name
|
|
*/
|
|
public $name;
|
|
|
|
/**
|
|
* @var array<Directive>
|
|
*/
|
|
public $directives;
|
|
}
|