Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 718 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 718 Bytes

graph-query-engine

A little project I've started to be able to take a SQL statement and execute it on a Neo4J graph data set

So far, the following type of queries have been implemented:

=========================

SELECT * FROM nodeLabel WHERE specifiedAttribute = specifiedValue

Input: Node Label, Attribute to find, Attribute Value to find

========================= SELECT id, specifiedAttribute FROM nodeLabel WHERE specifiedAttribute = specifiedValue

Input: Node Label, Attribute to find, Attribute Value to find

=========================

Next steps are to be able to take an actual statement rather than the parameters...