Show HN: Hasura – Fast, instant GraphQL APIs on Postgres 8 years ago
For 2 reasons inserting is tricky and querying is not super intuitive.
Example: I have 3 tables pages, page_blocks, and blocks.
- Inserting blocks into a page is tough.
- To query it's not very intuitive I would like to do.
pages {
blocks {
id
}
}& not
pages {
page_blocks {
blocks {
id
}
}
}