We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
(Model1.^all X Model2.^all).grep: { .[0].col1 == .[1].col2 }
should it do something like this?
SELECT table1.*, table2.* FROM table1 as t1 JOIN table2 as t2 ON t1.col1 = t2.col2