cymple.builder.With

class cymple.builder.With(query)

Bases: Query

A class for representing a “WITH” clause.

__init__(query)

Initialize the query object.

Methods

__init__(query)

Initialize the query object.

cypher(cypher_query_str)

Concatenate a cypher query string

get()

Get the final query string .

with_(variables)

Concatenate a WITH clause, keeping one or more variables given in 'variables' arg.

cypher(cypher_query_str)

Concatenate a cypher query string

get()

Get the final query string .

with_(variables: str)

Concatenate a WITH clause, keeping one or more variables given in ‘variables’ arg.

Parameters:

variables (str) – A string refering to previously obtained variables, comma seperated

Returns:

A Query object with a query that contains the new clause.

Return type:

WithAvailable