0bcc1d67bc
* Added handshake support * Add support for v4 hello and goodbye * Add support for pulling n results * Add support for transactions * Add pull n for the dump * Add support for NOOP * Add support for multiple queries * Update bolt session to support qid * Update drivers test with multiple versions and go * Extract failure handling into a function * Use unique ptr instead of optional for query execution * Destroy stream before query execution Co-authored-by: Antonio Andelic <antonio.andelic@memgraph.io>
26 lines
653 B
Python
26 lines
653 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from neo4j.v1 import GraphDatabase, basic_auth
|
|
|
|
driver = GraphDatabase.driver("bolt://localhost:7687",
|
|
auth=basic_auth("", ""),
|
|
encrypted=False)
|
|
session = driver.session()
|
|
|
|
session.run('MATCH (n) DETACH DELETE n').consume()
|
|
session.run('CREATE (alice:Person {name: "Alice", age: 22})').consume()
|
|
|
|
returned_result_set = session.run('MATCH (n) RETURN n').data()
|
|
returned_result = returned_result_set.pop()
|
|
alice = returned_result["n"]
|
|
|
|
print(alice['name'])
|
|
print(alice.labels)
|
|
print(alice['age'])
|
|
|
|
session.close()
|
|
driver.close()
|
|
|
|
print("All ok!")
|