clojurewerkz.neocons.rest.cypher

cypher-query-location-for

(cypher-query-location-for connection)

empty?

(empty? response)
Returns true if provided Cypher response is empty (has no data columns), false otherwise.
Empty responses can be returned by queries but also commonly mutating Cypher (with Neo4J Server 1.8+)

query

(query connection q)(query connection q params)
Performs a Cypher query, returning columns and rows separately (the way Neo4J REST API does)

tableize

(tableize response)(tableize columns rows)
Turns Cypher query response into a table, like SQL queries in relational databases

tquery

Performs a Cypher query, returning result formatted as a table (using tableize)