Space Race: Difference between revisions
From NoSQLZoo
ChrisHouston (talk | contribs) No edit summary |
ChrisHouston (talk | contribs) No edit summary |
||
Line 5: | Line 5: | ||
Use <code>MATCH</code> to show nodes that are Countries rather than Astronauts | Use <code>MATCH</code> to show nodes that are Countries rather than Astronauts | ||
<p class='strong'>Show Institutions instead of Astronauts<p> | <p class='strong'>Show Institutions instead of Astronauts<p> | ||
<pre class="def"><nowiki>MATCH(n:Astronauts) RETURN n | <pre class="def"><nowiki>MATCH(n:Astronauts) RETURN properties(n);</nowiki> | ||
</pre> | </pre> | ||
<pre class="ans"><nowiki>MATCH(n:Institutions) RETURN n | <pre class="ans"><nowiki>MATCH(n:Institutions) RETURN properties(n); </nowiki> | ||
</pre> | </pre> | ||
</div> | </div> | ||
{{Acknowledgements}} | {{Acknowledgements}} |
Revision as of 10:29, 22 November 2019
Learn how to use Neo4j using data from the Space Race.
Use MATCH
to show nodes that are Countries rather than Astronauts
Show Institutions instead of Astronauts
MATCH(n:Astronauts) RETURN properties(n);
MATCH(n:Institutions) RETURN properties(n);
Acknowledgements
NoSQLZoo is made possible by the following open-source technologies: