cymple.builder.Unwind
- class cymple.builder.Unwind(query)
Bases:
QueryA class for representing a “UNWIND” 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 .
unwind(variables)Concatenate an UNWIND 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 .
- unwind(variables: str)
Concatenate an UNWIND 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: