graphile-query 2.3.5 → 2.3.8
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 +28 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -130,6 +130,29 @@ Supports full context, roles, and settings for advanced scenarios.
|
|
|
130
130
|
|
|
131
131
|
Lightweight version with no role or settings support.
|
|
132
132
|
|
|
133
|
+
## Education and Tutorials
|
|
134
|
+
|
|
135
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
136
|
+
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
137
|
+
|
|
138
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
|
|
139
|
+
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
140
|
+
|
|
141
|
+
3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
|
|
142
|
+
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
143
|
+
|
|
144
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
|
|
145
|
+
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
146
|
+
|
|
147
|
+
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
148
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
149
|
+
|
|
150
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
151
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
152
|
+
|
|
153
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
154
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
155
|
+
|
|
133
156
|
## Related LaunchQL Tooling
|
|
134
157
|
|
|
135
158
|
### 🧪 Testing
|
|
@@ -171,6 +194,11 @@ Lightweight version with no role or settings support.
|
|
|
171
194
|
* [@launchql/query-builder](https://github.com/launchql/launchql/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
|
|
172
195
|
* [@launchql/query](https://github.com/launchql/launchql/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
173
196
|
|
|
197
|
+
## Credits
|
|
198
|
+
|
|
199
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
200
|
+
|
|
201
|
+
|
|
174
202
|
## Disclaimer
|
|
175
203
|
|
|
176
204
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-query",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.8",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "graphile query",
|
|
6
6
|
"main": "index.js",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"graphile",
|
|
45
45
|
"launchql"
|
|
46
46
|
],
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
|
|
48
48
|
}
|