for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GraphQL\Language\AST;
class FragmentSpreadNode extends Node implements SelectionNode
{
public $kind = NodeKind::FRAGMENT_SPREAD;
/**
* @var NameNode
*/
public $name;
* @var DirectiveNode[]
public $directives;
public function getKind() : string
return NodeKind::FRAGMENT_SPREAD;
}