mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-23 08:13:50 +03:00
21 lines
358 B
PHP
21 lines
358 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
class SchemaDefinitionNode extends Node implements TypeSystemDefinitionNode
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $kind = NodeKind::SCHEMA_DEFINITION;
|
|
|
|
/**
|
|
* @var DirectiveNode[]
|
|
*/
|
|
public $directives;
|
|
|
|
/**
|
|
* @var OperationTypeDefinitionNode[]
|
|
*/
|
|
public $operationTypes;
|
|
}
|