Files
GermanAirlinesVA-GraphQL/vendor/webonyx/graphql-php/src/Language/AST/HasSelectionSet.php
T
Your Name aae17f10a6 new Deps
2021-07-26 19:46:18 +02:00

16 lines
258 B
PHP

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