org.vertexium.cypher.ast.model.CypherSetVariable Maven / Gradle / Ivy
package org.vertexium.cypher.ast.model;
public class CypherSetVariable extends CypherSetItem {
public CypherSetVariable(CypherVariable cypherVariable, Op op, CypherAstBase value) {
super(cypherVariable, op, value);
}
}