Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
08-22-2022 08:05 AM - edited 08-22-2022 08:11 AM
Neo4j desktop version: 1.4.15
Neo4j graph data science version: 2.15
Neo4j dbms version: 4.4.5
I am following the example used in gds.alpha.graph.project (https://neo4j.com/docs/graph-data-science/current/graph-project-cypher-aggregation/), together with call gds.graph.list() to check the in-memory graphs. It works fine until after executing the example cypher (below) in Section 2.3 Multi-Graph.
MATCH (source)
WHERE source:Person OR source:Book
OPTIONAL MATCH (source)-[r:KNOWS|READ]->(target)
WHERE target:Person OR target:Book
WITH gds.alpha.graph.project(
'personsAndBooks',
source,
target,
{
sourceNodeLabels: labels(source),
targetNodeLabels: labels(target)
},
{
relationshipType: type(r)
}
) AS g
RETURN g.graphName AS graph , g.nodeCount AS nodes, g.relationshipCount AS rels
The above cypher was executed. But I got the following error when I tried call gds.graph.list().
All the sessions of the conference are now available online