For the sample select statement below:
Start = select t from Start:s-(nextword:e)-word:t
accum @@edgeSet += e,
@@vSet += t,
@@words += t.Text
having t.Text != endWord;
“t.Text != endWord” must be true in he “having” clause.
Is it possible to do something like this:
Having myUDF(t.Text, someCriteria);
where myUDF returns true or false.