I have imported a csv file into a neo4j database. I am now using bloom to visualise the graph but im not able to expand nodes due to "Undefined node". I have included the cypher I used to import the data below as well as a screenshot of the Graph schema and a Screenshot of the error. I also included a screenshot showing that the node has relationships that should be expanding.
Thanks for your help,
Sam
Create constraint On (o:Organization) assert o.Name is unique;
Create constraint On (c:Contact) assert c.Name is unique;
Create constraint On (e:Employee) assert e.Name is unique;
Load csv with headers from 'file:///S.K_Meta_Contacts_Organizations.csv' as line
I have tried all your suggestions with no joy, the relationship [Works for] is being created as is highlighted in screenshot 3, the space in the relationship type is compensated by using backticks in Cypher,
Thanks for your suggestions! Unfortunately neither merge or create solved my issue, its very frustrating as the Owner relationship works fine in bloom
HI, thanks for the test run, I only put in the single quates in there as when i put backticks into the forum they were not apperaring, I defo have the backticks in my cypher code, There is no missing organizations in my dataset, but there a few funny ones that are only numbers, im going to play arounf with toString to see if that helps the matter,
I have it sorted now, I added quatation marks to the companys with numbers for names in the csv file.
Thanks for all your suggestions. Note: GOing forward I wont be adding spaces to my relationships as Bloom still isnt to fond of the Works For relationship even tough the neo4j browser deals with it ok.#