Have create two nodes
'Individual_Hist_table' is acting as Input to built 'Record_Hist_details'
CREATE (hist:History { name: 'Record_Hist_details' , type : 'Daily'})
CREATE (hist:History { name: 'Individual_Hist_table' , type : 'Daily'})
when am executing below query its not creating a relationship which originate from Individual_Hist_table and end at Record_Hist_details
Match (hist:History { name: 'Individual_Hist_table'}) , (hist: History { name: 'Record_Hist_details'})
Create (hist)-[:Built_Using]->(hist)