HN user

wjonas

2 karma
Posts0
Comments2
View on HN
No posts found.

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
    }

  }

}