I'm working Neo4j from PHP. To generate the uuid field in the nodes I am using: neo4j-uuid. I also use: graphaware/neo4j-php-ogm, when I create a node, I do not return the value assigned to the UUID field, I have to make a new query to get that value, I need to hydrate the UUID value automatically when the object is created, just like the ID is hydrated.
return the value uuid in the nodes created in Neo4j ogm
232 Views Asked by Jaime Roman At
2
From the GraphAware Neo4j UUID Github Repo:
That is: this is the expected behavior. Currently you should make a new query to get the node with the generated UUID property.