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.

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 *