Being new to py2neo, I'm trying to understand its concepts. Regarding bound nodes, I did the following experiment:
make a local node: n = Node('Person', name='Alice')bind it: graph.create(n) (pushing it does not seem to create a remote node; then wha...