16 lines
258 B
PHP
16 lines
258 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Language\AST;
|
|
|
|
/**
|
|
* export type DefinitionNode = OperationDefinitionNode
|
|
* | FragmentDefinitionNode
|
|
*
|
|
* @property SelectionSetNode $selectionSet
|
|
*/
|
|
interface HasSelectionSet
|
|
{
|
|
}
|