mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
26b38bbe5b
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9631 GitOrigin-RevId: 64c40a30e3483fb0322ce9f2fbb2e9c1e3f1d9ba
14 lines
514 B
Markdown
14 lines
514 B
Markdown
# Hasura + SQL (OLTP)
|
|
|
|
What do people like doing with SQL DBs?
|
|
|
|
- Normalize their data so that its easy to ensure consistency
|
|
- Read short amounts of related data quickly by specifying filter/sort predicates
|
|
- Write data in transactions to ensure consistency
|
|
|
|
The Hasura + X story:
|
|
|
|
- Tables, views and functions that return relations become models
|
|
- Models
|
|
- A transaction becomes a command that takes an input model, whose body is the invocation of the transaction, and the output relation is the output model
|