edgedb-js
edgedb-js copied to clipboard
Support object-getter functions
e.select(e.User("abcdef123..."), ()=>({
// shape
}))
as shorthand for
e.select(e.User, ()=>({
// shape
filter: e.op(user.id, '=', e.uuid("abcdef123..."))
}))