Interface CypherQuery

All Known Subinterfaces:
CypherMatchQuery, CypherUnionQuery
All Known Implementing Classes:
CypherMatchQueryImpl, CypherUnionQueryImpl

public interface CypherQuery
Represents a query written in the Cypher query language.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the set of variables that are defined in the MATCH clauses of this query.
    Returns a Cypher expression representing this query.
  • Method Details

    • toString

      String toString()
      Returns a Cypher expression representing this query.
      Overrides:
      toString in class Object
    • getMatchVars

      Set<CypherVar> getMatchVars()
      Returns the set of variables that are defined in the MATCH clauses of this query.