public function getEntities(OutputInterface $output): void
{
while (true) {
$next = $this->send($client, $url, $output);
if ($next->count() === 0) {
break;
}
$url = $next->link()->getData();
}
}