graphile-test 2.7.0 → 2.7.2
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 +25 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -192,6 +192,26 @@ expect(result.data.createUser.username).toBe('alice');
|
|
|
192
192
|
* Start with `getConnections()` for most use cases.
|
|
193
193
|
* Consider `getConnectionsUnwrapped()` for cleaner test assertions.
|
|
194
194
|
|
|
195
|
+
## Education and Tutorials
|
|
196
|
+
|
|
197
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
198
|
+
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
199
|
+
|
|
200
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
|
|
201
|
+
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
202
|
+
|
|
203
|
+
3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
|
|
204
|
+
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
205
|
+
|
|
206
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
|
|
207
|
+
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
208
|
+
|
|
209
|
+
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
210
|
+
TypeScript-native testing for Supabase with modern workflows.
|
|
211
|
+
|
|
212
|
+
6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
213
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
214
|
+
|
|
195
215
|
## Related LaunchQL Tooling
|
|
196
216
|
|
|
197
217
|
### 🧪 Testing
|
|
@@ -233,6 +253,11 @@ expect(result.data.createUser.username).toBe('alice');
|
|
|
233
253
|
* [@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.
|
|
234
254
|
* [@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.
|
|
235
255
|
|
|
256
|
+
## Credits
|
|
257
|
+
|
|
258
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
259
|
+
|
|
260
|
+
|
|
236
261
|
## Disclaimer
|
|
237
262
|
|
|
238
263
|
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-test",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.2",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile Testing",
|
|
6
6
|
"main": "index.js",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"graphql-tag": "2.12.6"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@launchql/types": "^2.8.
|
|
38
|
-
"graphile-settings": "^2.6.
|
|
37
|
+
"@launchql/types": "^2.8.1",
|
|
38
|
+
"graphile-settings": "^2.6.2",
|
|
39
39
|
"graphql": "15.10.1",
|
|
40
40
|
"mock-req": "^0.2.0",
|
|
41
41
|
"pg": "^8.16.0",
|
|
42
|
-
"pgsql-test": "^2.14.
|
|
42
|
+
"pgsql-test": "^2.14.2",
|
|
43
43
|
"postgraphile": "^4.14.1"
|
|
44
44
|
},
|
|
45
45
|
"keywords": [
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"launchql",
|
|
50
50
|
"test"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
|
|
53
53
|
}
|