I'm Tobia Moretti, from Milan, Italy.
I'm a C++/C# software engineer.
I've been far from Neo4J for years, but I hope to introduce it in my company suite in the next future.
Nice to meet you all here!
Hello @abahhar70,
I'm a C++/C# specialist and I didn't know well PHP and GraphAware.
My deduction based on the HTTP error, that seems to give an important info.
I think that u should be able to insert something similar at this php code
.request(M...
Oh, ok.
Maybe you've to add it in the first MATCH, because I noticed now that you've add it only inside the CALL and so your query cannot use it. If you want to use it, you've to add it in MATCH.
MATCH (start:Loc{name:"A"}), (end:Loc{name:"C"}), (sta...
Hello @Terry.Y,
I think that this could be a possible solution:
MATCH (start:Loc{name:"A"}), (end:Loc{name:"C"})
CALL gds.alpha.shortestPath.stream({
nodeQuery:'MATCH(n:Loc) RETURN id(n) AS id',
relationshipQuery:'MATCH(n:Loc)-[r:ROAD]->(m:Loc) RETUR...
Thank you @abahhar70
I think that I've found the solution:
415 Unsupported Media Type error occurs when the origin server refuses a particular request since the resource is in a format that is not supported by the server for the HTTP method used. Thi...