```js import { resolveRequestPromises } from '@unfold/fetch-data' const renderApplication = () => renderToString(<Application />) try { const markup = await resolveFetchRequests(renderApplication, { maxIterations: 2 }) res.send(markup) } catch (error) { next(error) } ```