wheresrhys / keen-query

Terse, cypher-esque querying for keen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

for/as

wheresrhys opened this issue · 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)