graphile-many-to-many 1.0.9 → 1.0.11
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 +18 -18
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
|
|
13
13
|
</a>
|
|
14
14
|
<a href="https://www.npmjs.com/package/graphile-many-to-many">
|
|
15
|
-
<img height="20" src="https://img.shields.io/github/package-json/v/
|
|
15
|
+
<img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/constructive?filename=graphile%2Fgraphile-many-to-many%2Fpackage.json"/>
|
|
16
16
|
</a>
|
|
17
17
|
</p>
|
|
18
18
|
|
|
@@ -188,10 +188,10 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
188
188
|
|
|
189
189
|
### 🧪 Testing
|
|
190
190
|
|
|
191
|
-
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/
|
|
192
|
-
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/
|
|
193
|
-
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/
|
|
194
|
-
* [pg-query-context](https://github.com/constructive-io/constructive/tree/main/
|
|
191
|
+
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
192
|
+
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/postgres/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
193
|
+
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/graphile/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
|
194
|
+
* [pg-query-context](https://github.com/constructive-io/constructive/tree/main/postgres/pg-query-context): **🔒 Session context injection** to add session-local context (e.g., `SET LOCAL`) into queries—ideal for setting `role`, `jwt.claims`, and other session settings.
|
|
195
195
|
|
|
196
196
|
### 🧠 Parsing & AST
|
|
197
197
|
|
|
@@ -205,25 +205,25 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
205
205
|
|
|
206
206
|
### 🚀 API & Dev Tools
|
|
207
207
|
|
|
208
|
-
* [
|
|
209
|
-
* [
|
|
208
|
+
* [@constructive-io/graphql-server](https://github.com/constructive-io/constructive/tree/main/graphql/server): **⚡ Express-based API server** powered by PostGraphile to expose a secure, scalable GraphQL API over your Postgres database.
|
|
209
|
+
* [@constructive-io/graphql-explorer](https://github.com/constructive-io/constructive/tree/main/graphql/explorer): **🔎 Visual API explorer** with GraphiQL for browsing across all databases and schemas—useful for debugging, documentation, and API prototyping.
|
|
210
210
|
|
|
211
211
|
### 🔁 Streaming & Uploads
|
|
212
212
|
|
|
213
|
-
* [etag-hash](https://github.com/constructive-io/constructive/tree/main/
|
|
214
|
-
* [etag-stream](https://github.com/constructive-io/constructive/tree/main/
|
|
215
|
-
* [uuid-hash](https://github.com/constructive-io/constructive/tree/main/
|
|
216
|
-
* [uuid-stream](https://github.com/constructive-io/constructive/tree/main/
|
|
217
|
-
* [
|
|
218
|
-
* [
|
|
213
|
+
* [etag-hash](https://github.com/constructive-io/constructive/tree/main/streaming/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
|
|
214
|
+
* [etag-stream](https://github.com/constructive-io/constructive/tree/main/streaming/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
215
|
+
* [uuid-hash](https://github.com/constructive-io/constructive/tree/main/streaming/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
|
|
216
|
+
* [uuid-stream](https://github.com/constructive-io/constructive/tree/main/streaming/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
|
|
217
|
+
* [@constructive-io/s3-streamer](https://github.com/constructive-io/constructive/tree/main/streaming/s3-streamer): **📤 Direct S3 streaming** for large files with support for metadata injection and content validation.
|
|
218
|
+
* [@constructive-io/upload-names](https://github.com/constructive-io/constructive/tree/main/streaming/upload-names): **📂 Collision-resistant filenames** utility for structured and unique file names for uploads.
|
|
219
219
|
|
|
220
220
|
### 🧰 CLI & Codegen
|
|
221
221
|
|
|
222
|
-
* [pgpm](https://github.com/constructive-io/constructive/tree/main/
|
|
223
|
-
* [@
|
|
224
|
-
* [
|
|
225
|
-
* [@
|
|
226
|
-
* [@
|
|
222
|
+
* [pgpm](https://github.com/constructive-io/constructive/tree/main/pgpm/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
|
|
223
|
+
* [@constructive-io/cli](https://github.com/constructive-io/constructive/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing Constructive projects—supports database scaffolding, migrations, seeding, code generation, and automation.
|
|
224
|
+
* [@constructive-io/graphql-codegen](https://github.com/constructive-io/constructive/tree/main/graphql/codegen): **✨ GraphQL code generation** (types, operations, SDK) from schema/endpoint introspection.
|
|
225
|
+
* [@constructive-io/query-builder](https://github.com/constructive-io/constructive/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.
|
|
226
|
+
* [@constructive-io/graphql-query](https://github.com/constructive-io/constructive/tree/main/graphql/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
227
227
|
|
|
228
228
|
## Credits
|
|
229
229
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-many-to-many",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "Add connection fields for many-to-many relations",
|
|
5
5
|
"author": "Matt Bretl",
|
|
6
6
|
"homepage": "https://github.com/constructive-io/constructive",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"build": "makage build",
|
|
16
16
|
"build:dev": "makage build --dev",
|
|
17
17
|
"lint": "eslint . --fix",
|
|
18
|
-
"test": "jest",
|
|
18
|
+
"test": "jest --passWithNoTests",
|
|
19
19
|
"test:watch": "jest --watch"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"graphile-build-pg": "^4.14.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"graphile-test": "^2.11.
|
|
45
|
+
"graphile-test": "^2.11.5",
|
|
46
46
|
"graphql": "15.10.1",
|
|
47
47
|
"makage": "^0.1.8",
|
|
48
|
-
"pgsql-test": "^2.17.
|
|
48
|
+
"pgsql-test": "^2.17.2",
|
|
49
49
|
"postgraphile": "^4.14.1"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "22cfe32e994e26a6490e04e28bab26d1e7e6345c"
|
|
52
52
|
}
|