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;
 }
Beispiel #3
0
 public GremlinDropVariable(GremlinVariable droppedVariable) : base(GremlinVariableType.NULL)
 {
     DroppedVariable = droppedVariable;
 }