I have a basic MongoDB Atlas trigger in NodeJS :
exports = function(changeEvent) {
// Make an http request
};
My goal is to call an AWS lambda function from this trigger, so i would like to know the syntax to make a basic GET request to a specific endpoint from the NodeJS code.
EDIT :
I am unable to run axios, the dependency is indeed installed but the get method doesn't seem to exist.
