Cypher: Can I return an explorable NODE in graph view with a result-only transformed property (no projections, no writes)?

I want to visually explore the graph starting from a node, but with one of its properties shown in a transformed way only in the result/visualization. Specifically, I want a property to always appear with a fixed suffix "_labeled" appended when returned.

Example:
If a node has n.name = "ABC123", I want the visualization to show it as "ABC123_labeled".

Important part of the goal:
I don’t just want a separate computed column — I want the visualized node itself (in Browser/Bloom graph view) to display the transformed property, so that I can click it, expand neighbors, and explore its connections as if it were a normal node in the graph view.
But this should be result-only: I do not want to store or persist any change.

Constraints
I’m intentionally avoiding the following:

  • No writes / no persistence: no SET

  • No overwriting stored properties

  • No map projections, e.g. no RETURN n {.* , name: ... }

  • NO virtual nodes, unless there’s possible way