*/ public NodeList $arguments; /** @var NodeList */ public NodeList $directives; public ?SelectionSetNode $selectionSet = null; public function __construct(array $vars) { parent::__construct($vars); $this->directives ??= new NodeList([]); $this->arguments ??= new NodeList([]); } }