cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

No properties on virtual nodes

Been following the presentation of Lju Lazarevic https://youtu.be/fOJqHcTpQxs?t=1236
Original:

You can see that the label of the returned node is displayed ("Person")


But when I do the same, on mine, this is not displayed for any node resulting from the same query.
Mine:

and the problem is that on mine, Bloom does not load any property of the resulted virtual nodes

whereas the same query in Neo4j Browser yields a node with it's respective property

Same for apoc.meta.graph()


What am I doing wrong?
Tried from a new perspective without categories, same.

1 REPLY 1

Dongho
Node Clone

Yes, I have the same problem with this simple query in bloom:

match (p:Person)
with collect(distinct p.born) as years
unwind years as year
call apoc.create.vNode(['Year'], {year:year}) yield node as yearNode
match (p:Person) where p.born = year
call apoc.create.vRelationship(p, 'BORN_IN',{}, yearNode) yield rel
return *