add postgres upsert
mutations to postgraphile
yarn add postgraphile-upsert-plugin
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