@drizzle-graphql-suite/client 0.5.0 → 0.6.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.
Files changed (2) hide show
  1. package/README.md +23 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,30 @@
1
1
  # @drizzle-graphql-suite/client
2
2
 
3
+ > Part of [`drizzle-graphql-suite`](https://github.com/annexare/drizzle-graphql-suite).
4
+ > See also: [`schema`](https://github.com/annexare/drizzle-graphql-suite/tree/main/packages/schema) | [`query`](https://github.com/annexare/drizzle-graphql-suite/tree/main/packages/query)
5
+
3
6
  Type-safe GraphQL client auto-generated from Drizzle schemas, with full TypeScript inference for queries, mutations, filters, and relations.
4
7
 
8
+ ## Installation
9
+
10
+ ```bash
11
+ bun add @drizzle-graphql-suite/client
12
+ ```
13
+
14
+ ```bash
15
+ npm install @drizzle-graphql-suite/client
16
+ ```
17
+
18
+ Or install the full suite:
19
+
20
+ ```bash
21
+ bun add drizzle-graphql-suite
22
+ ```
23
+
24
+ ```bash
25
+ npm install drizzle-graphql-suite
26
+ ```
27
+
5
28
  ## Quick Start
6
29
 
7
30
  ### From Drizzle Schema (recommended)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drizzle-graphql-suite/client",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Type-safe GraphQL client with entity-based API and full Drizzle type inference",
5
5
  "license": "MIT",
6
6
  "author": "https://github.com/dmythro",