graphile-plugin-connection-filter 2.3.3 → 2.3.4
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/LICENSE +1 -1
- package/README.md +38 -38
- package/package.json +7 -7
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2025 Dan Lynch <pyramation@gmail.com>
|
|
4
|
-
Copyright (c) 2025
|
|
4
|
+
Copyright (c) 2025 Constructive <developers@constructive.io>
|
|
5
5
|
Copyright (c) 2020-present, Interweb, Inc.
|
|
6
6
|
|
|
7
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# graphile-plugin-connection-filter
|
|
2
2
|
|
|
3
3
|
<p align="center" width="100%">
|
|
4
|
-
<img height="250" src="https://raw.githubusercontent.com/
|
|
4
|
+
<img height="250" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center" width="100%">
|
|
8
|
-
<a href="https://github.com/
|
|
9
|
-
<img height="20" src="https://github.com/
|
|
8
|
+
<a href="https://github.com/constructive-io/constructive/actions/workflows/run-tests.yaml">
|
|
9
|
+
<img height="20" src="https://github.com/constructive-io/constructive/actions/workflows/run-tests.yaml/badge.svg" />
|
|
10
10
|
</a>
|
|
11
|
-
<a href="https://github.com/
|
|
11
|
+
<a href="https://github.com/constructive-io/constructive/blob/main/LICENSE">
|
|
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-plugin-connection-filter">
|
|
@@ -37,7 +37,7 @@ This plugin supports filtering on almost all PostgreSQL types, including complex
|
|
|
37
37
|
See also:
|
|
38
38
|
|
|
39
39
|
- [@graphile/pg-aggregates](https://github.com/graphile/pg-aggregates) - integrates with this plugin to enable powerful aggregate filtering
|
|
40
|
-
- [graphile-plugin-connection-filter-postgis](https://github.com/
|
|
40
|
+
- [graphile-plugin-connection-filter-postgis](https://github.com/constructive-io/constructive/tree/main/graphile/graphile-plugin-connection-filter-postgis) - adds PostGIS functions and operators for filtering on `geography`/`geometry` columns
|
|
41
41
|
- [postgraphile-plugin-fulltext-filter](https://github.com/mlipscombe/postgraphile-plugin-fulltext-filter) - adds a full text search operator for filtering on `tsvector` columns
|
|
42
42
|
- [postgraphile-plugin-unaccented-text-search-filter](https://github.com/spacefill/postgraphile-plugin-unaccented-text-search-filter) - adds unaccent text search operators
|
|
43
43
|
|
|
@@ -292,71 +292,71 @@ pnpm --filter graphile-plugin-connection-filter test
|
|
|
292
292
|
|
|
293
293
|
## Education and Tutorials
|
|
294
294
|
|
|
295
|
-
1. 🚀 [Quickstart: Getting Up and Running](https://
|
|
295
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://constructive.io/learn/quickstart)
|
|
296
296
|
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
297
297
|
|
|
298
|
-
2. 📦 [Modular PostgreSQL Development with Database Packages](https://
|
|
298
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://constructive.io/learn/modular-postgres)
|
|
299
299
|
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
300
300
|
|
|
301
|
-
3. ✏️ [Authoring Database Changes](https://
|
|
301
|
+
3. ✏️ [Authoring Database Changes](https://constructive.io/learn/authoring-database-changes)
|
|
302
302
|
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
303
303
|
|
|
304
|
-
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://
|
|
304
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://constructive.io/learn/e2e-postgres-testing)
|
|
305
305
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
306
306
|
|
|
307
|
-
5. ⚡ [Supabase Testing](https://
|
|
307
|
+
5. ⚡ [Supabase Testing](https://constructive.io/learn/supabase)
|
|
308
308
|
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
309
309
|
|
|
310
|
-
6. 💧 [Drizzle ORM Testing](https://
|
|
310
|
+
6. 💧 [Drizzle ORM Testing](https://constructive.io/learn/drizzle-testing)
|
|
311
311
|
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
312
312
|
|
|
313
|
-
7. 🔧 [Troubleshooting](https://
|
|
313
|
+
7. 🔧 [Troubleshooting](https://constructive.io/learn/troubleshooting)
|
|
314
314
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
315
315
|
|
|
316
|
-
## Related
|
|
316
|
+
## Related Constructive Tooling
|
|
317
317
|
|
|
318
318
|
### 🧪 Testing
|
|
319
319
|
|
|
320
|
-
* [
|
|
321
|
-
* [
|
|
322
|
-
* [
|
|
323
|
-
* [
|
|
320
|
+
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/packages/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
321
|
+
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/packages/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
322
|
+
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/packages/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
|
323
|
+
* [pg-query-context](https://github.com/constructive-io/constructive/tree/main/packages/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.
|
|
324
324
|
|
|
325
325
|
### 🧠 Parsing & AST
|
|
326
326
|
|
|
327
|
-
* [
|
|
328
|
-
* [
|
|
329
|
-
* [
|
|
330
|
-
* [@pgsql/enums](https://
|
|
331
|
-
* [@pgsql/types](https://
|
|
332
|
-
* [@pgsql/utils](https://
|
|
333
|
-
* [
|
|
327
|
+
* [pgsql-parser](https://www.npmjs.com/package/pgsql-parser): **🔄 SQL conversion engine** that interprets and converts PostgreSQL syntax.
|
|
328
|
+
* [libpg-query-node](https://www.npmjs.com/package/libpg-query): **🌉 Node.js bindings** for `libpg_query`, converting SQL into parse trees.
|
|
329
|
+
* [pg-proto-parser](https://www.npmjs.com/package/pg-proto-parser): **📦 Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
|
|
330
|
+
* [@pgsql/enums](https://www.npmjs.com/package/@pgsql/enums): **🏷️ TypeScript enums** for PostgreSQL AST for safe and ergonomic parsing logic.
|
|
331
|
+
* [@pgsql/types](https://www.npmjs.com/package/@pgsql/types): **📝 Type definitions** for PostgreSQL AST nodes in TypeScript.
|
|
332
|
+
* [@pgsql/utils](https://www.npmjs.com/package/@pgsql/utils): **🛠️ AST utilities** for constructing and transforming PostgreSQL syntax trees.
|
|
333
|
+
* [pg-ast](https://www.npmjs.com/package/pg-ast): **🔍 Low-level AST tools** and transformations for Postgres query structures.
|
|
334
334
|
|
|
335
335
|
### 🚀 API & Dev Tools
|
|
336
336
|
|
|
337
|
-
* [launchql/server](https://github.com/
|
|
338
|
-
* [launchql/explorer](https://github.com/
|
|
337
|
+
* [launchql/server](https://github.com/constructive-io/constructive/tree/main/packages/server): **⚡ Express-based API server** powered by PostGraphile to expose a secure, scalable GraphQL API over your Postgres database.
|
|
338
|
+
* [launchql/explorer](https://github.com/constructive-io/constructive/tree/main/packages/explorer): **🔎 Visual API explorer** with GraphiQL for browsing across all databases and schemas—useful for debugging, documentation, and API prototyping.
|
|
339
339
|
|
|
340
340
|
### 🔁 Streaming & Uploads
|
|
341
341
|
|
|
342
|
-
* [launchql/s3-streamer](https://github.com/
|
|
343
|
-
* [launchql/etag-hash](https://github.com/
|
|
344
|
-
* [launchql/etag-stream](https://github.com/
|
|
345
|
-
* [launchql/uuid-hash](https://github.com/
|
|
346
|
-
* [launchql/uuid-stream](https://github.com/
|
|
347
|
-
* [launchql/upload-names](https://github.com/
|
|
342
|
+
* [launchql/s3-streamer](https://github.com/constructive-io/constructive/tree/main/packages/s3-streamer): **📤 Direct S3 streaming** for large files with support for metadata injection and content validation.
|
|
343
|
+
* [launchql/etag-hash](https://github.com/constructive-io/constructive/tree/main/packages/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
|
|
344
|
+
* [launchql/etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
345
|
+
* [launchql/uuid-hash](https://github.com/constructive-io/constructive/tree/main/packages/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
|
|
346
|
+
* [launchql/uuid-stream](https://github.com/constructive-io/constructive/tree/main/packages/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
|
|
347
|
+
* [launchql/upload-names](https://github.com/constructive-io/constructive/tree/main/packages/upload-names): **📂 Collision-resistant filenames** utility for structured and unique file names for uploads.
|
|
348
348
|
|
|
349
349
|
### 🧰 CLI & Codegen
|
|
350
350
|
|
|
351
|
-
* [pgpm](https://github.com/
|
|
352
|
-
* [@launchql/cli](https://github.com/
|
|
353
|
-
* [launchql/launchql-gen](https://github.com/
|
|
354
|
-
* [@launchql/query-builder](https://github.com/
|
|
355
|
-
* [@launchql/query](https://github.com/
|
|
351
|
+
* [pgpm](https://github.com/constructive-io/constructive/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
|
|
352
|
+
* [@launchql/cli](https://github.com/constructive-io/constructive/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
|
|
353
|
+
* [launchql/launchql-gen](https://github.com/constructive-io/constructive/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
|
|
354
|
+
* [@launchql/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.
|
|
355
|
+
* [@launchql/query](https://github.com/constructive-io/constructive/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
356
356
|
|
|
357
357
|
## Credits
|
|
358
358
|
|
|
359
|
-
🛠 Built by
|
|
359
|
+
🛠 Built by Constructive — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/constructive-io)
|
|
360
360
|
|
|
361
361
|
|
|
362
362
|
## Disclaimer
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-plugin-connection-filter",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "Filtering on PostGraphile connections",
|
|
5
5
|
"author": "Matt Bretl",
|
|
6
|
-
"homepage": "https://github.com/
|
|
6
|
+
"homepage": "https://github.com/constructive-io/constructive",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"module": "esm/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
27
|
-
"url": "https://github.com/
|
|
27
|
+
"url": "https://github.com/constructive-io/constructive"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"postgraphile",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"launchql"
|
|
37
37
|
],
|
|
38
38
|
"bugs": {
|
|
39
|
-
"url": "https://github.com/
|
|
39
|
+
"url": "https://github.com/constructive-io/constructive/issues"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"graphile-build": "^4.14.1",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
|
|
51
51
|
"@types/pg": "^8.15.6",
|
|
52
|
-
"graphile-test": "^2.8.
|
|
52
|
+
"graphile-test": "^2.8.12",
|
|
53
53
|
"makage": "^0.1.6",
|
|
54
54
|
"pg": "^8.16.0",
|
|
55
|
-
"pgsql-test": "^2.14.
|
|
55
|
+
"pgsql-test": "^2.14.15"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "5a0d7c7502624bd42a214f983fd7ab957e1fb3e3"
|
|
58
58
|
}
|