diff --git a/Neos.ContentRepository.NodeAccess/Classes/FlowQueryOperations/PropertyOperation.php b/Neos.ContentRepository.NodeAccess/Classes/FlowQueryOperations/PropertyOperation.php index 85227ed0e5e..409a5dd3c4a 100644 --- a/Neos.ContentRepository.NodeAccess/Classes/FlowQueryOperations/PropertyOperation.php +++ b/Neos.ContentRepository.NodeAccess/Classes/FlowQueryOperations/PropertyOperation.php @@ -23,9 +23,7 @@ use Neos\Neos\Utility\NodeTypeWithFallbackProvider; /** - * Used to access properties of a ContentRepository Node. If the property mame is - * prefixed with _, internal node properties like start time, end time, - * hidden are accessed. + * Used to access properties of a ContentRepository Node. */ class PropertyOperation extends AbstractOperation { @@ -80,7 +78,7 @@ public function canEvaluate($context): bool public function evaluate(FlowQuery $flowQuery, array $arguments): mixed { if (empty($arguments[0])) { - throw new FlowQueryException('property() does not support returning all attributes yet', 1332492263); + throw new FlowQueryException(static::$shortName . '() does not allow returning all properties.', 1332492263); } /** @var array $context */ $context = $flowQuery->getContext();