Hi,
I am trying to get a transaction summary after a read or write transaction using neo4j python-driver. I have written some code to get this but these aren't working.
Code
def write_data(tx, query):
result = tx.run(query)
record = result.si...
Hi,
I am training the GraphSage model for embeddings with 64 dim like below
CALL gds.beta.graphSage.train(
'products',
{
modelName: 'productsGraphSage',
nodeLabels: ['Group', 'Group1'],
relationshipTypes: ['HAS_GROUP1'],
featurePr...
Hi,
I am evaluating the Neo4j 4.2 with data that have millions of nodes and relationships. But writing performance is quite slow. My sample query is given below
create (session:Session {session_id: 'session_id1'})
;
match (s:Session) where s.sessi...
Hi,
I had tried to contact you through your website last week. We are working on the recommendation system and implemented it on the Neo4j community edition. I need to finalize Graph DB selection to present at the BoD meeting.
I would like to discuss...
Just wanted to post an answer to this question. Use following code to get the txn details.
def commit_data(query):
with driver.session(database="neo4j") as session:
tx = session.begin_transaction()
result = tx.run(query)
r...
Hi, Thanks for the reply. Yes I had created [UNIQUE CONSTRAINTS] for the merge nodes. Few node type I need to CREATE so did not use for that one otherwise yes for all others.