Deploying Mesh to Cloudflare Workers
💡
This page is currently under construction and expected to change. Please feel free to reach out to us directly in case you are having any troubles.
Mesh Serve a provides you a cross-platform GraphQL Server. So you can easily integrate it into any platform besides Node.js.
Cloudflare Workers provides a serverless execution environment that allows you to create entirely new applications or augment existing ones without configuring or maintaining infrastructure.
💡
Before you start, make sure you read the Serverless / On the Edge page.
import { createServeRuntime } from '@graphql-mesh/serve-runtime'
const serveRuntime = createServeRuntime({
// serveConfig
})
export default { fetch: serveRuntime }
💡
If you want to use Cloudflare KV Cache as a distributed cache, see here for Mesh integration