graphql-php/src/Language/AST/InlineFragmentNode.php

23 lines
368 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
class InlineFragmentNode extends Node implements SelectionNode
2015-07-15 23:05:46 +06:00
{
public $kind = NodeKind::INLINE_FRAGMENT;
2015-07-15 23:05:46 +06:00
/**
* @var NamedTypeNode
2015-07-15 23:05:46 +06:00
*/
public $typeCondition;
/**
* @var DirectiveNode[]|null
2015-07-15 23:05:46 +06:00
*/
public $directives;
/**
* @var SelectionSetNode
2015-07-15 23:05:46 +06:00
*/
public $selectionSet;
2016-11-10 17:25:54 +00:00
}