REVIEW-Graphical Databases Using Neo4j
REVIEW-Graphical Databases Using Neo4j
•Now that the DBMS is running and open, we can start adding our data in my
case I will be adding information about my family.
•Code :
•create(bn1:Person{maBN:1, name:"Safeer Khan", height: "5.8", job: "Prof",
Home: "Pakistan" ,SEX : "M"})
•create(bn2:Person{maBN:2, name:"Shazia Safeer", height: "5.2", job: "House
Wife", Home: "Pakistan",SEX : "F"})
•create(bn3:Person{maBN:3, name:"Massoma Safeer", height: "5.2", job:
"Aerospace Engineer", Home: "USA",SEX : "F"})
•create(bn4:Person{maBN:4, name:"Zuhair Khan", height: "5.8", job:
"Automation Engineer", Home: "USA",SEX : "M"})
•create(bn5:Person{maBN:5, name:"Muhammad Naqi Khan", height: "6.0", job:
"Student", Home: "USA",SEX : "M"})
•create(bn6:Person{maBN:6, name:"Saqib Khan", height: "6.0", job:
"Automation Engineer", Home: "Pakistan",SEX : "M"})
•create(bn7:Person{maBN:7, name:"Saba Khan", height: "5.2", job: "Designer",
Home: "USA",SEX : "F"})
•create(bn8:Person{maBN:8, name:"Ali Madhai", height: "5.8", job: "Black
Smith", Home: "Pakistan",SEX : "M"})
•create(bn9:Person{maBN:9, name:"Ail Khan", height: "3.0", job: "STUDENT",
Home: "USA",SEX : "M"})
•create(bn10:Person{maBN:10, name:"Zreena Madhai", height: "5.0", job:
"Housewife", Home: "Pakistan",SEX : "F"})
PARENT OF
•What is a graph database? - developer guides. (n.d.). Retrieved April 11, 2021, from
https://neo4j.com/developer/graph-database/
Identify 5 interesting ideas or fact that was missing from the video with reference.
The use of graph databases in real-time scenarios like fraud detection, recommendation systems is very
interesting.
A quick implementation of showing how create to a graph database in neo4j would have been very interesting to
watch
Neo4j offers granular security, Adding some point on what and how security measures can be implemented in neo
4j will be a plus.
Different types of graphs are available in neo4j – directed graph, undirected graph, graphs with weight. The video
only considers directed graph. It would be interesting to see an example on each type of graph
A clear explanation on how sql search for result set when a query is given vs how a graph database makes its
search would be very fascinating.
REVIEW
Can you identify another example that could have been used to enhance the topic?
The video is mainly concentrates on directed graph. All the examples shown in the video
belong to directed graphs. An example about undirected graph like representing various
prominent people in a topic can enhance the topic