The code I used to create the graph is as below.
CREATE (a:Location {name: 'A'}),
(b:Location {name: 'B'}),
(c:Location {name: 'C'}),
(d:Location {name: 'D'}),
(e:Location {name: 'E'}),
(f:Location {name: 'F'}),
...
Hello,
I had written the certification exam, and qualified and also received my certificate.
But i didn't get the 'certified developer' badge in my badges.
Do I need to do any thing to get that? How could i get that?
I have 121 nodes. All are with same label. When i return a path, all comes with same color.
But what I want is, first node of the path should be green and last node should be red.
Please explain me how.
Thank you.
Hello,
I am learning Neo4j (Cypher, Graph Algorithms) for 4 months. I am just reading the documentation of neo4j and practicing the examples in that documentation only. But I am not confident on what I learned and where to use.
Thus,I need some probl...
Yes sir. Actually I used below code to call the graph. But i forget to mention in the above question.
CALL gds.graph.create(
'myGraph',
'Location',
'ROAD',
{
relationshipProperties: 'cost'
}
)
Please help me.
The above figure is the graph of the data.
The code used to create the graph is
CREATE (a:Location {name: 'A'}),
(b:Location {name: 'B'}),
(c:Location {name: 'C'}),
(d:Location {name: 'D'}),
(e:Location {name: 'E'}),
...