cymple.builder.Skip

class cymple.builder.Skip(query)

Bases: Query

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

skip(skip_count)

Concatenate a skip statement.

cypher(cypher_query_str)

Concatenate a cypher query string

get()

Get the final query string .

skip(skip_count: int | str)

Concatenate a skip statement.

Parameters:

skip_count (Union[int, str]) – A non-negative integer or a string of cypher expression that evaluates to a non-negative integer (as long as it is not referring to any external variables)

Returns:

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

Return type:

SkipAvailable