* 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)
| 39 | * @returns {import('@aws-appsync/utils').HTTPRequest} the request |
| 40 | */ |
| 41 | function fetch(resourcePath, options) { |
| 42 | const { method = 'GET', headers, body: _body, query } = options; |
| 43 | const body = typeof _body === 'object' ? JSON.stringify(_body) : _body; |
| 44 | return { |
| 45 | resourcePath, |
| 46 | method, |
| 47 | params: { headers, query, body }, |
| 48 | }; |
| 49 | } |