wheresrhys/keen-query

for/as

wheresrhys opened this issue · 0 comments

cta->for(dompath,~thing1,~thing2,=thing3)
->as(dompath,thing1,thing2,thing3)

is an alias for

@concat(
     cta->filter(dompath~thing1),
     cta->filter(dompath~thing2),
     cta->filter(dompath=thing3)
)
->relabel(CONCATENATION_RESULT,thing1,thing2,thing3)