When using a simple cypher like :
MATCH (v:Vendor {name: 'HashiCorp'})-[:MAKES]->(p:Product)
RETURN v, p
i get the correct results referencing the relations, but the target nodes are displaying the "categories" field, and not the "name" field,
cant find any way to change that.
this is the version info from the About Neo4j:
You are running
Neo4j Browser version: 2025.6.0
Neo4j Server version: 2025.06.2 (community)
Neo4j Browser Changelog
Build number: 245
Build date: 6/13/2025
i am running this instance on docker using neo4j:latest image.
any ideas ?