Hello,
I would like to check if a graph projection exists and if yes, drop it.
Here is the code tried without success:
</>CALL gds.graph.list()
YIELD graphName
WITH graphName AS graph
CALL gds.graph.drop(graph)
YIELD graphName
RETURN graphName</>
Neo...