I have a scenario where I want each user to have its own session ID, this session ID will be stored with certain parameters that affect the user's request.
what would be the best way to achieve this ?
I want o hold a session id that is available throughout the flow
I want it to be available in every function in the flow, so what should I do ?
Even in functions that are not necessarily part of the nestjs app that I am working on
One option that is that I can propagate it on every function call, but I want something elegant