Hi @oraiches,
General usage is to run the query and obtain a neo4j_result_stream_t *results. You can then iterate over those results using neo4j_result_t *result = neo4j_fetch_next(results);, each result being the equivalent of a row in the query res...