mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-25 09:13:50 +03:00
10 lines
138 B
PHP
10 lines
138 B
PHP
|
<?php
|
||
|
namespace GraphQL\Language\AST;
|
||
|
|
||
|
interface Selection
|
||
|
{
|
||
|
/**
|
||
|
* export type Selection = Field | FragmentSpread | InlineFragment
|
||
|
*/
|
||
|
}
|