@fullstackio/postgraphile-upsert-plugin
TypeScript icon, indicating that this package has built-in type declarations

1.4.0 • Public • Published

postgraphile-upsert-plugin

add postgres upsert mutations to postgraphile

JavaScript Style Guide semantic-release Greenkeeper badge CircleCI

Getting Started

Install

yarn add @fullstackio/postgraphile-upsert-plugin

CLI

postgraphile --append-plugins @fullstackio/postgraphile-upsert-plugin:PgMutationUpsertPlugin

See here for more information about loading plugins with PostGraphile.

Library

const express = require("express");
const { postgraphile } = require("postgraphile");
const {
  PgMutationUpsertPlugin
} = require("@fullstackio/postgraphile-upsert-plugin");

const app = express();

app.use(
  postgraphile(pgConfig, schema, {
    appendPlugins: [PgMutationUpsertPlugin]
  })
);

app.listen(5000);

Usage

This plugin creates an addition operation to upsert<Table> using a where clause, which is any unique constraint on the table.

Example

create table bikes (
  id serial PRIMARY KEY,
  "serialNumber" varchar UNIQUE NOT NULL,
  weight real,
  make varchar,
  model varchar
)

An upsert would look like this:

mutation {
  upsertBike(
    where: { serialNumber: "abc123" }
    input: {
      bike: {
        serialNumber: "abc123"
        weight: 25.6
        make: "kona"
        model: "cool-ie deluxe"
      }
    }
  ) {
    clientMutationId
  }
}

Credits

Package Sidebar

Install

npm i @fullstackio/postgraphile-upsert-plugin

Weekly Downloads

78

Version

1.4.0

License

MIT

Unpacked Size

15.4 kB

Total Files

4

Last publish

Collaborators

  • fullstackio