-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
51 lines (43 loc) · 1.23 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const pg = require('pg');
const { ApolloServer } = require('apollo-server');
const { makeSchemaAndPlugin } = require('postgraphile-apollo-server');
const ConnectionFilterPlugin = require('postgraphile-plugin-connection-filter');
const PgManyToManyPlugin = require('@graphile-contrib/pg-many-to-many');
const dbSchema = process.env.SCHEMA_NAMES
? process.env.SCHEMA_NAMES.split(',')
: ['lilac'];
const pgPool = new pg.Pool({
connectionString: (process.env.DATABASE_URL || 'postgres://postgres:[email protected]/blog'),
});
const postGraphileOptions = {
appendPlugins: [ConnectionFilterPlugin, PgManyToManyPlugin],
graphileBuildOptions: {
connectionFilterRelations: true,
},
exportGqlSchemaPath: 'schema.graphql',
subscriptions: true,
graphiql: true,
dynamicJson: true,
watchPg: true,
enhanceGraphiql: true,
allowExplain(req) {
return true;
},
};
async function main() {
const { schema, plugin } = await makeSchemaAndPlugin(
pgPool,
dbSchema,
postGraphileOptions
);
const server = new ApolloServer({
schema,
plugins: [plugin],
});
const { url } = await server.listen(5000);
console.log(`🚀 Server ready at ${url}`);
}
main().catch(e => {
console.error(e);
process.exit(1);
});