pg-datasource
v0.0.3
Published
node postgres dataloader for apollo server
Downloads
2
Readme
pg-Data-Source
for apollo-server, combine node-postgres with logical of SQLDataSource
Getting Started
Installation
To install: npm i pg-datasource
Usage
// pgDB.js
const { PgDataSource } = require('pg-datasource')
class PgDB extends PgDataSource {
async helloWorld() {
return await this.db.query('SELECT NOW() as now')
}
}
module.exports = PgDB;
And use it in your Apollo server configuration:
// index.js
const PgDB = require("./PgDB");
const db = new PgDB(pgConnection);
// you can pass a Postgres.js instance or other db instance instead of a configuration object
const server = new ApolloServer({
typeDefs,
resolvers,
cache,
context,
dataSources: () => ({ db })
});