You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ideally we could inline this, and end up with something more like:
exportconstplans={Query: {tableSetQuery: {plan($parent,fieldArgs,info){// Call the base plan, and store the result into `$result`const$select=getSelectPlanFromParentAndArgs12($parent,args,info);let$result=connection($select,{// nodePlan: ($item) => $item,cursorPlan($item){return$item.getParentStep ? $item.getParentStep().cursor() : $item.cursor();}});// Apply each of the post plan resolvers in an unrolled loop:{const$orderBy=fieldArgs.getRaw("orderBy");const$select=$result.getSubplan();constorderByArg=field.args.find(a=>a.name==="orderBy");$select.apply(extractEnumExtensionValue(orderByArg.type,"pgSelectApply",$orderBy));// $result = ... (only if changed)}return$result;},
The text was updated successfully, but these errors were encountered:
postgraphile/postgraphile/__tests__/schema/v4/defaultOptions.1.export.mjs
contains code like:Ideally we could inline this, and end up with something more like:
The text was updated successfully, but these errors were encountered: