NEO4J CYPHER |NE04J CYPHER TUTORIAL|Node Creation,Search, Multiple Node Using foreach|PART:2
In the video we will de discussing on the below topics: neo4j cypher neo4j cypher TUTORIAL 1.create single node without level create (n) 2.displaying all nodes created match (x) return(x) 3.search specific node when no level is available match (n) where id(n)=40 return (n) 4.ceating multiple nodes using foreach loop foreach (i in RANGE(0,49)|create (n)) 5.search one specific node from multiple available nodes when no level is available match (n) where id(n)=40 return (n) 6. search more than one specific node from multiple available nodes when no level is available. match (n) where id(n)=94 or id(n)=96 return (n) 7.delete all existing nodes match (n) delete (n)
In the video we will de discussing on the below topics: neo4j cypher neo4j cypher TUTORIAL 1.create single node without level create (n) 2.displaying all nodes created match (x) return(x) 3.search specific node when no level is available match (n) where id(n)=40 return (n) 4.ceating multiple nodes using foreach loop foreach (i in RANGE(0,49)|create (n)) 5.search one specific node from multiple available nodes when no level is available match (n) where id(n)=40 return (n) 6. search more than one specific node from multiple available nodes when no level is available. match (n) where id(n)=94 or id(n)=96 return (n) 7.delete all existing nodes match (n) delete (n)