1
0
mirror of https://github.com/retailcrm/graphql-php.git synced 2025-03-26 09:33:50 +03:00
graphql-php/src/Language/AST/FragmentDefinition.php

24 lines
359 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
class FragmentDefinition extends NamedType implements Definition
2015-07-15 23:05:46 +06:00
{
public $kind = Node::FRAGMENT_DEFINITION;
/**
* @var NamedType
2015-07-15 23:05:46 +06:00
*/
public $typeCondition;
/**
* @var array<Directive>
*/
public $directives;
/**
* @var SelectionSet
*/
public $selectionSet;
}