How do I ensure a request to a custom business logic endpoint came from my Hasura. I am building the custom logic on a node js server running on AWS EB.
For example how might I implement the below method?
app.post('/some-event-or-action', (req, res) => {
if(authCheckThisCameFromMyHasura()){
//execute
}
}
ask me if any problem