org.vertexium.cypher.ast.model.CypherSetNodeLabels Maven / Gradle / Ivy
package org.vertexium.cypher.ast.model;
public class CypherSetNodeLabels extends CypherSetItem> {
public CypherSetNodeLabels(CypherVariable cypherVariable, CypherListLiteral cypherLabelNames) {
super(cypherVariable, CypherSetItem.Op.PLUS_EQUAL, cypherLabelNames);
}
}