<span class="hljs-comment">// data stored with this direction</span>
<span class="hljs-keyword">CREATE</span> (p:<span class="hljs-type">Person</span>)-[:<span class="hljs-type">LIKES</span>]-&gt;(t:<span class="hljs-type">Technology</span>)

<span class="hljs-comment">// query relationship backwards will not return results</span>
<span class="hljs-keyword">MATCH</span> (p:<span class="hljs-type">Person</span>)&lt;-[:<span class="hljs-type">LIKES</span>]-(t:<span class="hljs-type">Technology</span>)

<span class="hljs-comment">// better to query with undirected relationship unless sure of direction</span>
<span class="hljs-keyword">MATCH</span> (p:<span class="hljs-type">Person</span>)-[:<span class="hljs-type">LIKES</span>]-(t:<span class="hljs-type">Technology</span>)
