A bit late to the game, but this works for me: version: '3.7'
services:
neo4j:
image: neo4j:4.4.7
hostname: neo4j
container_name: neo4j
ports:
- "7474:7474"
- "7687:7687"
environment:
- NEO4JLABS_PLUGINS=["apoc...
Ah wait sorry, I've put it in the wrong place in my reply:
CALL gds.graph.create(
'myGraph',
'Location',
{ ROAD: {type: "ROAD", orientation: "UNDIRECTED"}},
{
relationshipProperties: 'cost'
}
)