UNPKG

@graphql-mesh/serve-runtime

Version:
15 lines (14 loc) 386 B
export function useCustomAgent(agentFactory) { return { onFetch(payload) { const agent = agentFactory(payload); if (agent != null) { payload.setOptions({ ...payload.options, // @ts-expect-error - `agent` is there agent, }); } }, }; }