Hey there!
When you create a node within Bloom's UI, you are not only adding a new node to the canvas, you are also writing that new node to the database itself. The undo command however only operates on the canvas, not database transactions. So whil...
Well here it looks like your JobVector property is a property of the WORK_AS relationship, not a node. In which case, the featureProperties parameter won't see it as it refers to node properties. I think you want the relationshipWeightProperty para...
You'll want to use apoc.refactor.setType(). Although all it is doing under the hood is re-creating a new relationship with the name you pass it. So ID(r:EXPORTED) != ID(r:EXPORTED_PRODUCT_123456). Otherwise, there is no way to directly change the typ...
nuraishahzaidi01:
not specify defau
It looks like you aren't including any node properties when creating your graph. I would reference this code sample from this example from the docs.
CALL gds.graph.create(
'persons_with_instruments',
{
...
krid_mail:
CALL gds.louvain.stream(
{
nodeQuery: '
MATCH (entity)
WHERE entity:LABEL_A
RETURN id(entity) AS id, labels(entity) AS labels',
relationshipQuery: '
MATCH (entity1:LABEL_A)-[r1:TYPE_A]->(:LABEL_B)-[r2:TYPE_B]->(entity2:LABEL_A...