d14a4b69ab
Summary: Query Size Limit in Python, Java, JavaScript Reviewers: mferencevic, mislav.bradac, teon.banek Reviewed By: mferencevic, teon.banek Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D508
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!")
|