neo4j-labs / neodash

NeoDash - a Dashboard Builder for Neo4j
https://neo4j.com/labs/neodash/
Apache License 2.0
394 stars 127 forks source link

Example Gantt chart data and cypher query needed #910

Open ssfd7 opened 2 weeks ago

ssfd7 commented 2 weeks ago

Current documentation is lacking. My cypher query is returning a 3 colums - title, startDate, endDate but NeoDash Gantt chart is saying:

Gert-Jan-STARC commented 1 week ago

I use : MATCH (p:project)-[f:FOLLOWS]->(d:project) RETURN p,f,d

for Graph lay-out: nodes = [ { 'project': { 'name': 'project', 'startDate': 'date', 'endDate': 'date', } } ] relations = [ ['project', 'FOLLOWS', 'project', {'properties':{'rel_type':['SE', 'SS', 'ES', 'EE']}}] ]

rel_type does not work, still figuring out how to do it, you have any idea?

goodluck!