visualizing properties attributes in the webadmin interface of neo4j -
i have searched on internet not able find related this.
is there way visualize properties attributes on edges(links) in neo4j webadmin interface?
if yes please guide me how can that?
if no please suggest me there tool or can in web interface.
thanks
if understand correctly, want see properties stored part of relationships. there many ways in admin web ui.
for instance, in data browser, enter following cypher query see relationships in db, including properties:
match ()-[r]->() return r;
if know id of specific relationship interested in (let's 92), use:
start r=rel(92) return r;
i can give simplest answers. if have more complex question, please add more details.
Comments
Post a Comment