cymple.builder.Remove

class cymple.builder.Remove(query)

Bases: Query

A class for representing a “REMOVE” 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 .

remove(properties)

Concatenate a remove by statement.

cypher(cypher_query_str)

Concatenate a cypher query string

get()

Get the final query string .

remove(properties: str | List[str])

Concatenate a remove by statement.

Parameters:

properties (Union[str, List[str]]) – A string or a list of strings representing the properties to remove.

Returns:

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

Return type:

RemoveAvailable