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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -