mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-23 08:13:50 +03:00
13 lines
185 B
PHP
13 lines
185 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
class DocumentNode extends Node
|
|
{
|
|
public $kind = NodeKind::DOCUMENT;
|
|
|
|
/**
|
|
* @var DefinitionNode[]
|
|
*/
|
|
public $definitions;
|
|
}
|