I just noticed what I believe is a potential issue when importing the graphml file into neo4j. I was having problems with the visualisation on neo4j bloom. When using the apoc function for importing graphml files you have the option 'readLabels' which takes the 'labels' property from your graph and uses it as labels. The issue is in the generated graph the 'labels' property corresponds to a piece of text describing the node, and 'node_type' is the actual label. I replaced 'node_type' with 'labels' and renamed the previous 'labels' property 'names' and now I can visualise the nodes in neo4j bloom. I hope I am being clear otherwise we can have a call or something to explain myself.
This is the documentation of the apoc import graphml function
I just noticed what I believe is a potential issue when importing the graphml file into neo4j. I was having problems with the visualisation on neo4j bloom. When using the apoc function for importing graphml files you have the option 'readLabels' which takes the 'labels' property from your graph and uses it as labels. The issue is in the generated graph the 'labels' property corresponds to a piece of text describing the node, and 'node_type' is the actual label. I replaced 'node_type' with 'labels' and renamed the previous 'labels' property 'names' and now I can visualise the nodes in neo4j bloom. I hope I am being clear otherwise we can have a call or something to explain myself.
This is the documentation of the apoc import graphml function