org.vertexium.cypher.ast.model.CypherMatchAll Maven / Gradle / Ivy
package org.vertexium.cypher.ast.model;
public class CypherMatchAll extends CypherLiteral {
public CypherMatchAll() {
super("*");
}
@Override
public String toString() {
return "*";
}
}