@constructive-io/graphql-server 2.10.11 → 2.10.12

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 (3) hide show
  1. package/esm/run.js +1 -5
  2. package/package.json +10 -10
  3. package/run.js +1 -5
package/esm/run.js CHANGED
@@ -1,8 +1,4 @@
1
1
  #!/usr/bin/env node
2
2
  import { getEnvOptions } from '@constructive-io/graphql-env';
3
3
  import { GraphQLServer as server } from './server';
4
- server(getEnvOptions({
5
- pg: {
6
- database: process.env.PGDATABASE,
7
- },
8
- }));
4
+ server(getEnvOptions());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructive-io/graphql-server",
3
- "version": "2.10.11",
3
+ "version": "2.10.12",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Constructive GraphQL Server",
6
6
  "main": "index.js",
@@ -52,15 +52,15 @@
52
52
  "express": "^5.1.0",
53
53
  "graphile-build": "^4.14.1",
54
54
  "graphile-cache": "^1.6.8",
55
- "graphile-i18n": "^0.2.16",
56
- "graphile-meta-schema": "^0.3.16",
57
- "graphile-plugin-connection-filter": "^2.4.16",
58
- "graphile-plugin-connection-filter-postgis": "^1.1.16",
59
- "graphile-plugin-fulltext-filter": "^2.1.16",
55
+ "graphile-i18n": "^0.2.17",
56
+ "graphile-meta-schema": "^0.3.17",
57
+ "graphile-plugin-connection-filter": "^2.4.17",
58
+ "graphile-plugin-connection-filter-postgis": "^1.1.17",
59
+ "graphile-plugin-fulltext-filter": "^2.1.17",
60
60
  "graphile-query": "^2.4.6",
61
- "graphile-search-plugin": "^0.2.16",
62
- "graphile-settings": "^2.9.11",
63
- "graphile-simple-inflector": "^0.2.16",
61
+ "graphile-search-plugin": "^0.2.17",
62
+ "graphile-settings": "^2.9.12",
63
+ "graphile-simple-inflector": "^0.2.17",
64
64
  "graphile-utils": "^4.14.1",
65
65
  "graphql": "15.10.1",
66
66
  "graphql-tag": "2.12.6",
@@ -83,5 +83,5 @@
83
83
  "nodemon": "^3.1.10",
84
84
  "ts-node": "^10.9.2"
85
85
  },
86
- "gitHead": "deb816f0fb9aad6cef1accf0dc603e016e48d335"
86
+ "gitHead": "9a4f31663554bed9c6cc785a3eb283d0a5d27620"
87
87
  }
package/run.js CHANGED
@@ -3,8 +3,4 @@
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const graphql_env_1 = require("@constructive-io/graphql-env");
5
5
  const server_1 = require("./server");
6
- (0, server_1.GraphQLServer)((0, graphql_env_1.getEnvOptions)({
7
- pg: {
8
- database: process.env.PGDATABASE,
9
- },
10
- }));
6
+ (0, server_1.GraphQLServer)((0, graphql_env_1.getEnvOptions)());