-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
Description
Hi Michael
Have you considered how this library might support functional selects (parse trees) via its serialisation capability? For example, the Q expression:
.xyz.func[`test;(`filterClause`foo)!(enlist[(=;`account;`C12345)];1b)]could be expressed as something like this:
connection.k('.xyz.func', [
'`test', {
filterClause: [
[typed.operator('='), '`account', '`C12345'] // could be one of '=', '>=', '>', 'in', etc
],
foo: true
}
], callback);