Neo.ClientError.Procedure.ProcedureCallFailed: Failed to invoke procedure apoc.path.subgraphNodes: Caused by: org.neo4j.graphdb.NotFoundException: Node[199446563] not connected to this relationship[112111602]
The system explains that an expected condition within the data processed is not given.
Without any context information its rather difficult to help you out.
As a starting point, I would investigate the node and relation whose IDs are literally given by using the web client, e.g.:
MATCH (n)
WHERE id(n)=199446563
WITH n
MATCH (r)
WHERE id(r)=112111602
RETURN n, r
Examine, if the results match your expectations to model and data.
MATCH(start:Place{id:'Amsterdam'}),(end:Place{id:'London'})
CALL gds.alpha.shortestPath.stream({
nodeProjection:'Place',
relationshipPorjection:{ROAD:{type:'EROAD',properties:'distance',orientation:'UNDIRECTED'}},
startNode:start,endNode:end, writeProperty:'distance'})
YIELD nodeId, cost
RETURN gds.util.asNode(nodeId).id as name, cost Failed to invoke procedure gds.alpha.shortestPath.stream: Caused by: java.lang.IllegalArgumentException: Missing information for implicit graph creation. No value specified for the mandatory configuration parameter relationshipProjection (a similar parameter exists: [relationshipPorjection])
**I got this message when i try to running the code in Neo4j 3.5.17 **
How I can solve it ??
CALL algo.closeness.stream("User", "FOLLOWS")
YIELD nodeId, centrality
RETURN algo.getNodeById(nodeId).id, centrality
ORDER BY centrality DESC
There is no procedure with the name algo.closeness.stream registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
I used this code but I got this error and the code looks fine to me.
How I can solve this problems ?