2026-05-30 14:06:18 +00:00

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;
}