GQLoom is a GraphQL weaver for TypeScript/JavaScript that weaves GraphQL Schema and resolvers using Valibot, Zod, or Yup, and supports sophisticated type inference to provide the best development experience.
Hello World
import { resolver, query, weave } from "@gqloom/valibot"
import * as v from "valibot"
const HelloResolver = resolver({
hello: query(v.string(), () => "world"),
})
export const schema = weave(HelloResolver)
I'm excited to introduce you to GQLoom.
GQLoom is a GraphQL weaver for TypeScript/JavaScript that weaves GraphQL Schema and resolvers using Valibot, Zod, or Yup, and supports sophisticated type inference to provide the best development experience.
Hello World