Nouns
In any story, nouns describe the things that exist and can be acted upon. All of our application’s nouns are inter-connected with many-to-many relationships.
<table>
<thead>
<tr>
<th>
Noun</th>
<th>
Relationships</th>
</tr>
</thead>
<tbody>
<tr>
<td>
each<code>
Film</code></td>
<td>
<ul>
<li>
has some characters (<code>
Person</code>
)</li>
<li>
is set on some planets (<code>
Planet</code>
)</li>
<li>
has some starships (<code>
Starship</code>
)</li>
<li>
has some other vehicles (<code>
Vehicle</code>
)</li>
<li>
features different species (<code>
Species</code>
)</li>
</ul>
</td>
</tr>
<tr>
<td>
each<code>
Planet...