EdgeQL: 在 Cloudflare Worker 部署 GraphQL 的工具

查看 14|回复 0
作者:metrue   
EdgeQL 是我为了在 edge 环境快速构建 GraphQL 服务而实现的一个轻量框架,欢迎大家尝试和反馈, 目前支持 Cloudflare Worker 和 Bun ,正在努力支持所有的 JavaScript runtimes.
import { EdgeQL } from 'edgeql'
const app = new EdgeQL()
const schema = `
type Query {
  hello: String
}
    `
app.handle(schema, (ctx: Context) => 'world')
export default app
您需要登录后才可以回帖 登录 | 立即注册

返回顶部