0.0.5 • Published 4 years ago

@ioancole/postgraphile-upsert-plugin v0.0.5

Weekly downloads
43
License
MIT
Repository
github
Last release
4 years ago

postgraphile-upsert-plugin

add postgres upsert mutations to postgraphile

JavaScript Style Guide semantic-release Greenkeeper badge CircleCI

install

yarn add postgraphile-upsert-plugin

usage

import { PgMutationUpsertPlugin } from 'postgraphile-upsert-plugin'

postgraphile(pgClient, 'yourSchema', {
  appendPlugins: [PgMutationUpsertPlugin as any]
})

fire open PostGraphiQL and look for mutation { upsert<ModelName> { ... } }

this is a typescript-ified knock off of the original upsert plugin