Add headers/tokens to calls to queries and actions
Can anyone describe how I can ensure additional data is sent in headers when interacting with the backend?
I have some security tokens stored on the client that I would like to have access to on the server (for external api requests).
I’d like to avoid making these calls from the client if possible, because there will be several subsequent queries and actions to trigger.
These are transient, and user specific so I can’t store as env vars on the server.
I could store them in a temporary table, and retrieve when needed, but that seems messy and will require a cleanup activity.
