6 lines
201 B
Python
6 lines
201 B
Python
from Util.Neo4jExecutor import Neo4jExecutor
|
|
|
|
if __name__ == '__main__':
|
|
executor = Neo4jExecutor.create_default()
|
|
executor.graph.run("MATCH (n) DETACH DELETE n")
|
|
print("清库成功") |