Skip to content

alemagio/fastify-postgraphile

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 

fastify-postgraphile

js-standard-style CI workflow

fastify-postgraphile enables the use of Postgraphile in a Fastify application.

Supports Fastify versions 3.x

Install

npm i fastify-postgraphile

Usage

Middleware mode

This is the suggested way to work and the only one directly implemented by postgraphile.

const fastify = require('fastify')()

fastify.register(require('fastify-postgraphile'), {
  pool: {
    user: 'postgres',
    host: 'localhost',
    database: 'postgres',
    password: 'password',
    port: 5432
  },
  schemas: 'public',
  middleware: true // default
  postgraphileOptions: {
    // all the options you can pass to the postgraphile function
  }
})

fastify.listen(3000)

Non middleware mode

Require fastify-postgraphile and register it as any other plugin, it will add a graphql reply decorator.
Consider that this is a mode with no built-in routes, you only have a reply decorator already attached to Postgraphile.

const fastify = require('fastify')()

fastify.register(require('fastify-postgraphile'), {
  pool: {
    user: 'postgres',
    host: 'localhost',
    database: 'postgres',
    password: 'password',
    port: 5432
  },
  schemas: 'public',
  middleware: false
})

fastify.get('/', async (req, reply) => {
  return reply.graphql(req.body.query, req.body.variables)
})

fastify.listen(3000)

Options

  • pool: accepts a configuration object for the pg connection (see doc)
  • schemas: accepts string or string[] containing the schemas you want to connect to
  • contextOptions: see Postgraphile doc
  • middleware: when true it enables the default mode of Postgraphile, this is the default configuration and the one supported by Postgraphile
  • postgraphileOptions: see Postgraphile doc (working only in middleware mode)

Acknowledgements

The code is a port for Fastify of postgraphile.

License

Licensed under MIT.
postgraphile license

About

Plugin to integrate Postgraphile in your Fastify project.

Resources

License

Stars

Watchers

Forks

Packages

No packages published