Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-01-2020 10:13 PM
How to Match and execute apoc procedures using python
03-02-2020 02:05 AM
simple create your query and store it in variable then run session.run(query)
eg.:
query_build = ''' MATCH p = (n:LABEL{name:'Kunal'})-[*]->()
with collect(p) as path
CALL apoc.convert.toTree(path) yield value
RETURN value'''
tree_json = session.run(query_build)`
03-03-2020 03:29 AM
Thank you so much.I got it
All the sessions of the conference are now available online