Struct rusted_cypher::cypher::CypherQuery [] [src]

pub struct CypherQuery<'a> { /* fields omitted */ }

Represents a cypher query

A cypher query is composed by statements, each one containing the query itself and its parameters.

The query parameters must implement Serialize so they can be serialized into JSON in order to be sent to the server

Methods

impl<'a> CypherQuery<'a>
[src]

Adds statements in builder style

Sends the query to the server

The statements contained in the query are sent to the server and the results are parsed into a Vec<CypherResult> in order to match the response of the neo4j api.