Exercises
To make sure you fully understand the content described in this chapter, you are encouraged to think about the following exercises before moving on:
- Which information do you need to define a graph?
- Do you need a graph dataset to start using a graph database?
- True or false:
- Neo4j can only be started with Neo4j Desktop.
- The application to use to create dashboards from Neo4j data is Neo4j Browser.
- Graph data science is supported by default by Neo4j.
- Are the following Cypher syntaxes valid, and why/why not? What are they doing?
MATCH (x:User)
RETURN x.name
MATCH (x:User)
RETURN x
MATCH (:User)
RETURN x.name
MATCH (x:User)-[k:KNOWS]->(y:User) RETURN x,
k, y
MATCH (x:User)-[:KNOWS]-(y) RETURN
x, y
- Create more data (other node labels/relationship types) and queries.