Exemplo n.º 1
0
 public GraphTraversal2 HasValue(params object[] valuesOrPredicates)
 {
     GremlinUtil.CheckIsValueOrPredicate(valuesOrPredicates);
     this.AddOperator(new GremlinHasOp(GremlinHasType.HasValue, valuesOrPredicates));
     return(this);
 }
Exemplo n.º 2
0
 public GraphTraversal2 Has(string label, string propertyKey, object predicateOrValue)
 {
     GremlinUtil.CheckIsValueOrPredicate(predicateOrValue);
     this.AddOperator(new GremlinHasOp(label, propertyKey, predicateOrValue));
     return(this);
 }