Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
02-15-2021 06:33 AM
02-15-2021 09:04 AM
It works for me on:
Mac OXX 10.15.7, Neo4J 4.2.2 (enterprise), Browser 4.2.2
What version are you running? A long shot: Did you try quitting and restarting?
very odd.....
02-15-2021 09:26 AM
hi clem
windows 10 - firefox AND chrome
Neo4j Browser version: [4.2.0]
Neo4j Server version: [4.2.1]
yep did close the bowserS and nope still no icon
cu rob
02-16-2021 10:58 AM
You can double double check your Neo4j Desktop settings on the left panel to see if there is something wrong there. Usually there is no visual when there is no nodes returned.
02-17-2021 09:19 PM
HI i upgraded to 4.2.2. and 4.2.3 - i also cleard all locals data - but still the same ...
Never touched any settings on the left ....
just to make it clear for this cmd the visulaization is working !
MATCH (n:_PersonProcess
) RETURN n LIMIT 25
01-05-2022 04:57 PM
I am having the same issue. Using Neo4j 4.3.2 Community Edition. (And like Rob, other graph visualization works just fine.)
Further, I found that with CALL db.schema.visualization YIELD nodes
I get a graphical view of the nodes, but if I instead write YIELD relationships
or YIELD nodes, relationships
, it reverts back to the text output.
@rob2 or anyone else, have you found a solution here?
07-30-2022 03:28 AM
I stumbled on the same issue for Neo4j 4.3 and found a passable solution.
CALL db.schema.visualization
returns two separate lists with nodes and relationships and I suspect that this is preventing the browser from parsing the data as a graph. So I used UNWIND
to expand them in separate rows.
CALL db.schema.visualization() YIELD nodes, relationships
UNWIND relationships as r
UNWIND nodes as n
RETURN r, n
01-19-2023 05:23 PM
Does anyone know the manual or documentation about CALL db.schema.visualization?
I want to compare this with call apoc.meta.graph(https://neo4j.com/labs/apoc/4.4/overview/apoc.meta/apoc.meta.graph/) because they both shows the metagraph of database but I can't find the official document about CALL db.schema.visualization.
All the sessions of the conference are now available online