17 lines
446 B
PHP
17 lines
446 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Automattic\WooCommerce\Vendor\GraphQL\Language\AST;
|
|
|
|
class SchemaDefinitionNode extends Node implements TypeSystemDefinitionNode
|
|
{
|
|
public string $kind = NodeKind::SCHEMA_DEFINITION;
|
|
|
|
/** @var NodeList<DirectiveNode> */
|
|
public NodeList $directives;
|
|
|
|
/** @var NodeList<OperationTypeDefinitionNode> */
|
|
public NodeList $operationTypes;
|
|
|
|
public ?StringValueNode $description = null;
|
|
}
|