pg-query-context 2.2.4 → 2.2.6
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 +2 -2
package/README.md
CHANGED
|
@@ -87,6 +87,26 @@ app.post('/secure-endpoint', async (req, res) => {
|
|
|
87
87
|
});
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
+
## Education and Tutorials
|
|
91
|
+
|
|
92
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
93
|
+
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
94
|
+
|
|
95
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
|
|
96
|
+
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
97
|
+
|
|
98
|
+
3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
|
|
99
|
+
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
100
|
+
|
|
101
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
|
|
102
|
+
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
103
|
+
|
|
104
|
+
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
105
|
+
TypeScript-native testing for Supabase with modern workflows.
|
|
106
|
+
|
|
107
|
+
6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
108
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
109
|
+
|
|
90
110
|
## Related LaunchQL Tooling
|
|
91
111
|
|
|
92
112
|
### 🧪 Testing
|
|
@@ -128,6 +148,11 @@ app.post('/secure-endpoint', async (req, res) => {
|
|
|
128
148
|
* [@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.
|
|
129
149
|
* [@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.
|
|
130
150
|
|
|
151
|
+
## Credits
|
|
152
|
+
|
|
153
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
154
|
+
|
|
155
|
+
|
|
131
156
|
## Disclaimer
|
|
132
157
|
|
|
133
158
|
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": "pg-query-context",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.6",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "pg query context",
|
|
6
6
|
"main": "index.js",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"pg",
|
|
43
43
|
"graphile"
|
|
44
44
|
],
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
|
|
46
46
|
}
|