Calling `ctx.runQuery` from `query`
ctx.runQuery/runMutation was only possible from actions, and that calling a query from within a query was not possible, but that regular TS helper functions should be employed (e.g. as @erquhart mentions here How to call a function within another function?). I just found out that it is indeed possible by just using
ctx.runQuery. That comes with this warning/info: often you can call the query's function directly? Is this what you mean/propose?: