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