mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-21 07:23:48 +03:00
14 lines
227 B
PHP
14 lines
227 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Language\AST;
|
|
|
|
interface HasSelectionSet
|
|
{
|
|
/**
|
|
* export type DefinitionNode = OperationDefinitionNode
|
|
* | FragmentDefinitionNode
|
|
*/
|
|
}
|