---
title: "Breaking: #78623 - Lowlevel MissingRelationsCommand parameters changed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-78623"
source: "Changelog/8.5/Breaking-78623-LowlevelMissingRelationsCommandParametersChanged.rst"
typo3-version: "8.5"
typo3-major: 8
type: "breaking"
issue: 78623
forge: "https://forge.typo3.org/issues/78623"
tags: ["CLI", "ext:lowlevel"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #78623 - Lowlevel MissingRelationsCommand parameters changed {#breaking-78623}

See [forge#78623](https://forge.typo3.org/issues/78623)

## Description {#description}

The existing CLI command within EXT:lowlevel for showing relations and soft-references to non-existing records,
offline versions and records marked as deleted has been migrated to a Symfony Console command.

The command previously available via `./typo3/cli_dispatch.phpsh lowlevel_cleaner missing_relations` is now available
via `./typo3/sysext/core/bin/typo3 cleanup:missingrelations` and allows the following CLI options to be set:

`--update-refindex` \- updates the reference index before scanning for missing files. If not set, the user is asked if the task should be run
`--dry-run` \- do not delete the references but only list the references that are missing but connected to the TYPO3 system

The PHP class of the old CLI command `TYPO3CMSLowlevelMissingRelationsCommand` has been removed.

## Impact {#impact}

Calling the old CLI command `./typo3/cli_dispatch.phpsh lowlevel_cleaner missing_relations` will result in an error message.

## Affected Installations {#affected-installations}

Any TYPO3 instances using the lowlevel cleaner for finding relations pointing to deleted, offline versions or
non-existing records.

## Migration {#migration}

Update the CLI call on your servers to the new command line and available options as shown above.
