Files
payload/packages/db-postgres/src/create.ts
2024-04-25 13:05:49 -04:00

29 lines
689 B
TypeScript

import type { Create } from 'payload/database'
import type { PostgresAdapter } from './types'
import { upsertRow } from './upsertRow'
import toSnakeCase from 'to-snake-case'
export const create: Create = async function create(
this: PostgresAdapter,
{ collection: collectionSlug, data, req },
) {
const db = this.sessions[req.transactionID]?.db || this.drizzle
const collection = this.payload.collections[collectionSlug].config
const tableName = this.tableNameMap.get(toSnakeCase(collection.slug))
const result = await upsertRow({
adapter: this,
data,
db,
fields: collection.fields,
operation: 'create',
req,
tableName,
})
return result
}