MCPcopy Create free account
hub / github.com/aws-samples/aws-appsync-resolver-samples / fetch

Function fetch

samples/http/translate.js:55–63  ·  view source on GitHub ↗

* Sends an HTTP request * @param {string} resourcePath path of the request * @param {Object} [options] values to publish * @param {'PUT' | 'POST' | 'GET' | 'DELETE' | 'PATCH'} [options.method] the request method * @param {Object. } [options.headers] the request headers * @param {

(resourcePath, options)

Source from the content-addressed store, hash-verified

53 * @returns {import('@aws-appsync/utils').HTTPRequest} the request
54 */
55function fetch(resourcePath, options) {
56 const { method = 'GET', headers, body: _body, query } = options;
57 const body = typeof _body === 'object' ? JSON.stringify(_body) : _body;
58 return {
59 resourcePath,
60 method,
61 params: { headers, query, body },
62 };
63}

Callers 1

awsTranslateRequestFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected