in that serverless legacy console function, i'm ne...
# orm-help
q
in that serverless legacy console function, i'm needing to send a post request to a remote api, but the
fetch
and/or
https
includes do not seem to be supported, even though they are natively part of the node api for example, the following does not work:
const fetch = require('fetch')
const https = require("https")
const fetch = require('isomorphic-fetch')
t
You should be able to
require(‘isomorphic-fetch@2.2.0’)
Here is the list of available functions: https://github.com/graphcool/content/issues/109