Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
04-04-2022 03:07 AM
Hi I am following a great into to NEO4J from:
What is the equivalent to "create.cypher", is it project.cypher? does that have the same behavior?
`We will use the Cypher Projection to project a virtual network that is a transformed version of the underlying stored graph.
CALL gds.graph.create.cypher("nft",
"MATCH (t:Trader) WHERE NOT t.username = 'NullAddress' RETURN id(t) as id",
"MATCH (t1:Trader)-[:BOUGHT]->(t)<-[:SOLD]-(t2:Trader)
RETURN id(t1) AS source, id(t2) as target, coalesce(sum(t.Price_USD),1) as weight")`
Solved! Go to Solution.
04-04-2022 05:45 AM
I'm guessing you're on GDS 2.0 - we've modified the syntax so its gds.graph.project
instead of create
. The behavior is the same
04-04-2022 05:45 AM
I'm guessing you're on GDS 2.0 - we've modified the syntax so its gds.graph.project
instead of create
. The behavior is the same
All the sessions of the conference are now available online