Modeling Relationships

Relationships are connections between entities

Connections are the verbs in your use cases:

  • What ingredients are used in a recipe?

  • Who is married to this person?

At a glance, connections are straightforward things, but their micro- and macro-design are arguably the most critical factors in graph performance. Using “connections are verbs” is a fine shorthand to get started, but there are other important considerations that you will learn about later in this course.

Naming relationships

Choosing good names (types) for the relationships in the graph is important. Relationship types need to be something that is intuitive to stakeholders and developers alike. Relationship types cannot be confused with an entity name.

So in our example use cases, we could define these relationship types:

  • USES

  • MARRIED

Note here that we use the Neo4j best practice of all capital letters/underscore characters for the name of the relationship.

Relationship direction

When you create a relationship in Neo4j, a direction must either be specified explicitly or inferred by the left-to-right direction in the pattern specified. At runtime, during a query, direction is typically not required.

In our example use cases shown above, the USES relationship must be created to go from a Recipe node to an Ingredient node.

Uses relationship

The MARRIED relationship could be created to start in either node since this type of relationship is symmetric.

Married relationship

A relationship is typically between 2 different nodes, but it can also be to the same node.

Fanout

Fanout

Here, we have entities (Person, Residence) represented not as a single node, but as a network or linked nodes.

This is an extreme example of fanout, and is almost certainly overkill for any real-life solution, but some amount of fanout can be very useful.

For example, splitting last names onto separate nodes helps answer the question, “Who has the last name Scott?”. Similarly, having cities as separate nodes assists with the question, “Who lives in the same city as Patrick Scott?”.

The main risk about fanout is that it can lead to very dense nodes, or supernodes. These are nodes that have hundreds of thousands of incoming or outgoing relationships Supernodes need to be handled carefully.

Relationships in the Movie graph

Now let’s look at identifying the relationships for these use cases:

  • What people acted in a movie?

  • What person directed a movie?

  • What movies did a person act in?

Given these use cases, we name the relationships:

  • ACTED_IN

  • DIRECTED

Furthermore, both of these relationship types start at Person nodes and end in Movie nodes.

Here is the supporting graph data model:

Starting movie relationships

And here is the instance model to support this graph data model:

Starting movie relationships instances

Tom Hanks acted in two movies. Meg Ryan and Jack Nicholson each acted in one movie. Danny DeVito both acted in and directed the same movie. Exploring relationships with this instance model we see that the movie Apollo 13 has a single actor in the graph, but the other two movies have two actors each.

Properties for relationships

Properties for a relationship are used to enrich how two nodes are related. When you define a property for a relationship, it is because your use cases ask a specific question about how two nodes are related, not just that they are related.

For example, we saw in the Neo4j Fundamentals course that properties can be added to a relationship to further describe it.

Loves strength

Here we see that we have a date property on the MARRIED relationship to further describe the relationship between Michael and Sarah. Additionally, we have a roles property on the WORKS_AT relationship to describe the roles that Michael has or had when he worked at Graph Inc.

These properties are specific to the relationship between two nodes.

Relationship properties in the Movie graph

Just like you analyze the use cases for naming labels, relationship types, and node properties, you use the use cases to come up with properties for relationships.

Here is a use case:

  1. What role did a person play in a movie?

The runtime operations for this use case are:

  1. Retrieve the name of the person.

  2. Follow the ACTED_IN relationships to movies.

  3. Filter the movie by its title.

  4. Return the role from the ACTED_IN relationship between the two nodes.

We know that the role for a particular ACTED_IN relationship will be necessary for this use case. So we add the role property to this relationship. Here is the data model:

Data model

And here is the instance model you will be creating:

Instance model

Each ACTED_IN relationship here has a different value for the role property.

Check your understanding

1. Connections between entities

Suppose you have created a list of use cases for the application. What elements of the use cases are used to define the relationships in the data model?

  • ❏ The adverbs in the use cases.

  • ❏ The nouns in the use cases.

  • ❏ The adjectives in the use cases.

  • ✓ The verbs in the use cases.

Hint

Only one element is used to represent the connections between entities in the graph.

Solution

Verbs in your use cases are used to represent the connections between entities in the graph.

2. Defining relationships

When you define relationships in the graph data model, what must you define?

  • ✓ The starting node (with label) for the relationship.

  • ✓ The ending node (with label) for the relationship.

  • ❏ The number of nodes that will have that relationship in the graph.

  • ✓ The name (type) for the relationship.

Hint

A relationship must have a type and direction when it is created in the graph. There are three correct answers to this question.

Solution

You must specify the following when you define a relationship in the graph:

  1. The starting node (with label) for the relationship.

  2. The ending node (with label) for the relationship.

  3. The name (type) for the relationship.

Summary

In this lesson, you learned how to identify the relationships (and their properties) that will be added to your graph data model based upon your use cases. In the next challenge, you will create the initial relationships for our instance model.

Chatbot

Hi, I am an Educational Learning Assistant for Intelligent Network Exploration. You can call me E.L.A.I.N.E.

How can I help you today?