Upsert to mBrana
Metadata
- Name: Upsert to mBrana
- Adaptor:
@openfn/language-postgresql
- Adaptor Version:
v3.1.4
- Created over 3 years ago
- Updated about 3 years ago
- Score: 0 (an indicator of how useful this job may be)
Key Functions
upsert
Expression
// Your job goes here.
upsert(
'users', // the DB table
'ON CONSTRAINT users_pkey', // a DB column with a unique constraint OR a CONSTRAINT NAME
{ name: 'Elodie', id: 7 },
{ writeSql:true, execute: true }
);