pg-query-context 2.2.5 → 2.2.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.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -87,6 +87,29 @@ 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
+ Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
106
+
107
+ 6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
108
+ Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
109
+
110
+ 7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
111
+ Common issues and solutions for pgpm, PostgreSQL, and testing.
112
+
90
113
  ## Related LaunchQL Tooling
91
114
 
92
115
  ### 🧪 Testing
@@ -128,6 +151,11 @@ app.post('/secure-endpoint', async (req, res) => {
128
151
  * [@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
152
  * [@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
153
 
154
+ ## Credits
155
+
156
+ 🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
157
+
158
+
131
159
  ## Disclaimer
132
160
 
133
161
  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.5",
3
+ "version": "2.2.8",
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": "2bc45c48444fc9c2cce9f082cf33d533915bb048"
45
+ "gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
46
46
  }