Pass additional data from `useQuery` to context
For
Is there a similar way to pass some data to context (I want to update context data dynamicaly) after its initialization
I have case where my app have route e.g.
I was trying this
splitLink there is a way to pass context value through useQuery as second param { trpc: { context: { x: y } } }, but it doesn't propagate further from splitLink.Is there a similar way to pass some data to context (I want to update context data dynamicaly) after its initialization
createContext?I have case where my app have route e.g.
/[appName]/machine/[x] and I would like to pass appName to context so that I don't have to pass it each time with other params on useQuery. Is that possible and what would be the best way?I was trying this
trpc.machine.useQuery({ id: x }, { trpc: { ctx: { app: "<appName>" } } }) and similar variations.