textId; $text = $this->textRepo->find($id); if ($text === null) { throw new DomainException("Text with id: $id doesnt exist"); } return $this->nodeRepo->create(new CreateNodeDto( text: $text, title: $request->title, )); } }