Package se.liu.ida.hefquin.engine.wrappers.lpg.query
package se.liu.ida.hefquin.engine.wrappers.lpg.query
-
InterfacesClassDescriptionThis interface represents a generic Cypher Expression.Represents a Cypher Query with a MATCH-WHERE-RETURN structure, For example, the query: MATCH (x) MATCH (a)-[b]->(c) WHERE a:CLASS AND b.property='value' UNWIND KEYS(a) AS k RETURN x AS n1, c AS n2, k AS key can be represented with this interface.Represents a query written in the Cypher query language.Represents a UNION Cypher query.Represents path matching statements of Cypher queries For example, MATCH (x), MATCH (x)-[e]->(y)This interface represents an UNWIND clause of a Match Query.