I am new to neo4j database. I was looking for graph based database and found neo4j interesting. I wanted to know if it is possible to query neo4j database in Relational database style. Let me explain myself with an example:
I have a graph database of all students in class. Nodes contain student information and the relationships are 'friendship'. Each node has properties like name of student, class and cgpa. Now I want to get list of all students whose cgpa > 4. Is it possible to do this in neo4j in single query? Or do I need to find all nodes and then manipulate them?
It would also be very helpful if anyone can point out some good resource for neo4j queries.