Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1925,6 +1925,11 @@ The `Mutation` type is the entrypoint for mutations/edits.

Each table has top level entry in the `Mutation` type for [inserting](#insert) `insertInto<Table>Collection`, [updating](#update) `update<Table>Collection` and [deleting](#delete) `deleteFrom<Table>Collection`.

Columns that PostgreSQL generates, such as `serial` identity columns and
`generated` columns, are omitted from `InsertInput` and `UpdateInput` types.
PostgreSQL always computes those values, so clients cannot provide or override
them through insert or update mutations.

**SQL Setup**
```sql
create table "Blog"(
Expand Down