// data stored with this directionCREATE (p:Person)-[:LIKES]->(t:Technology)
// query relationship backwards will not return resultsMATCH (p:Person)<-[:LIKES]-(t:Technology)
// better to query with undirected relationship unless sure of directionMATCH (p:Person)-[:LIKES]-(t:Technology)