internal void SetPivotVariable(GremlinVariable newPivotVariable) { PivotVariable = newPivotVariable; StepList.Add(newPivotVariable); }
public GremlinValueMapVariable(GremlinVariable inputVariable, bool isIncludeTokens, List <string> propertyKeys) : base(GremlinVariableType.Table) { InputVariable = inputVariable; IsIncludeTokens = isIncludeTokens; PropertyKeys = propertyKeys; }
public GremlinDropVariable(GremlinVariable droppedVariable) : base(GremlinVariableType.NULL) { DroppedVariable = droppedVariable; }