graphile-settings 2.6.18 → 2.7.1
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 +3 -4
- package/package.json +16 -16
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-settings">
|
|
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-settings%2Fpackage.json"/>
|
|
16
16
|
</a>
|
|
17
17
|
</p>
|
|
18
18
|
|
|
@@ -191,14 +191,13 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
191
191
|
|
|
192
192
|
* [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.
|
|
193
193
|
* [@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.
|
|
194
|
-
* [
|
|
194
|
+
* [constructive-io/constructive-gen](https://github.com/constructive-io/constructive/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
|
|
195
195
|
* [@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.
|
|
196
196
|
* [@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.
|
|
197
197
|
|
|
198
198
|
## Credits
|
|
199
199
|
|
|
200
|
-
|
|
201
|
-
|
|
200
|
+
**🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
|
|
202
201
|
|
|
203
202
|
## Disclaimer
|
|
204
203
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-settings",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"author": "
|
|
3
|
+
"version": "2.7.1",
|
|
4
|
+
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "graphile settings",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"module": "esm/index.js",
|
|
@@ -30,22 +30,22 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@graphile-contrib/pg-many-to-many": "^1.0.2",
|
|
33
|
-
"@launchql/env": "^2.
|
|
34
|
-
"@launchql/types": "^2.
|
|
33
|
+
"@launchql/env": "^2.6.1",
|
|
34
|
+
"@launchql/types": "^2.10.1",
|
|
35
35
|
"cors": "^2.8.5",
|
|
36
36
|
"express": "^5.1.0",
|
|
37
37
|
"graphile-build": "^4.14.1",
|
|
38
|
-
"graphile-i18n": "^0.1
|
|
39
|
-
"graphile-meta-schema": "^0.
|
|
40
|
-
"graphile-pg-type-mappings": "^0.
|
|
41
|
-
"graphile-plugin-connection-filter": "^2.
|
|
42
|
-
"graphile-plugin-connection-filter-postgis": "^1.
|
|
43
|
-
"graphile-plugin-fulltext-filter": "^2.
|
|
44
|
-
"graphile-postgis": "^0.1
|
|
45
|
-
"graphile-query": "^2.
|
|
46
|
-
"graphile-search-plugin": "^0.1
|
|
47
|
-
"graphile-simple-inflector": "^0.1
|
|
48
|
-
"graphile-upload-plugin": "^0.
|
|
38
|
+
"graphile-i18n": "^0.2.1",
|
|
39
|
+
"graphile-meta-schema": "^0.3.1",
|
|
40
|
+
"graphile-pg-type-mappings": "^0.3.1",
|
|
41
|
+
"graphile-plugin-connection-filter": "^2.4.1",
|
|
42
|
+
"graphile-plugin-connection-filter-postgis": "^1.1.1",
|
|
43
|
+
"graphile-plugin-fulltext-filter": "^2.1.1",
|
|
44
|
+
"graphile-postgis": "^0.2.1",
|
|
45
|
+
"graphile-query": "^2.4.1",
|
|
46
|
+
"graphile-search-plugin": "^0.2.1",
|
|
47
|
+
"graphile-simple-inflector": "^0.2.1",
|
|
48
|
+
"graphile-upload-plugin": "^0.3.1",
|
|
49
49
|
"graphql": "15.10.1",
|
|
50
50
|
"graphql-tag": "2.12.6",
|
|
51
51
|
"graphql-upload": "^13.0.0",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"launchql",
|
|
71
71
|
"graphql"
|
|
72
72
|
],
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "3bfa1e2c4524664d19ebfa2baf214403821bdee9"
|
|
74
74
|
}
|