Node Graph: hide detail__*

According to the Grafana documentation for node graphs (Node graph | Grafana Cloud documentation),

any field prefixed with detail__ will be shown in the header of the context menu when clicking on the edge. Use config.displayName for a more human-readable label

.
What I found is the option available under Standard options → Display name (Configure standard options | Grafana documentation) and using the expression ${__field.displayName}. However, this option is not available for node graphs.
Is it possible, then, for the information I want to display on the node to appear with thecolumn name instead of detail__column name ?

Notes:

  • I am using the Infinity Data Source plugin to read CSV.
  • Grafana Version: 11.1.3
  • OS: Ubuntu 22.04.4 LTS

My problem was solved using transformation. I used the rename fields by regex transformation and in the match field, I entered ^detail__(.*)$.