@gqloom/core 0.2.2 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.cjs +370 -284
- package/dist/index.d.cts +228 -102
- package/dist/index.d.ts +228 -102
- package/dist/index.js +332 -247
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ The design of GQLoom is inspired by [tRPC](https://trpc.io/), [TypeGraphQL](http
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
11
11
|
- 🚀 GraphQL: flexible and efficient, reducing redundant data transfers;
|
|
12
|
-
- 🔒 Robust type safety: enjoy
|
|
12
|
+
- 🔒 Robust type safety: enjoy intelligent hints at development time to detect potential problems at compile time;
|
|
13
13
|
- 🔋 Ready to go: middleware, contexts, subscriptions, federated graphs are ready to go;
|
|
14
14
|
- 🔮 No extra magic: no decorators, no metadata and reflection, no code generation, you just need JavaScript/TypeScript;
|
|
15
15
|
- 🧩 Familiar schema libraries: use the schema libraries you already know (Zod, Yup, Valibot) to build GraphQL Schema and validate inputs;
|