I am currently learning Neo4j. I wrote a first test which creates a Node in Neo4j and fetches it. I use the PHP GraphAware\Neo4j\Client. However I am not able to see that node in the remote interface at http://localhost:7474/browser/, but I am able to fetch the Node in PHP ...
What am I doing wrong?
I create the node with CREATE (n:Person) SET n += {attributes} and I fetch it with MATCH (n:Person) RETURN n