12 lines
265 B
PHP
12 lines
265 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Automattic\WooCommerce\Vendor\GraphQL\Language\AST;
|
|
|
|
class SelectionSetNode extends Node
|
|
{
|
|
public string $kind = NodeKind::SELECTION_SET;
|
|
|
|
/** @var NodeList<SelectionNode&Node> */
|
|
public NodeList $selections;
|
|
}
|