@drizzle-graphql-suite/query 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.
- package/README.md +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
1
|
# @drizzle-graphql-suite/query
|
|
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) | [`client`](https://github.com/annexare/drizzle-graphql-suite/tree/main/packages/client)
|
|
5
|
+
|
|
3
6
|
TanStack React Query hooks for `drizzle-graphql-suite/client` — type-safe data fetching with caching, pagination, and mutations.
|
|
4
7
|
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
bun add @drizzle-graphql-suite/query
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install @drizzle-graphql-suite/query
|
|
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
|
## Setup
|
|
6
29
|
|
|
7
30
|
### Provider
|
package/package.json
CHANGED