How to do a simple join in GraphQL?
TL;DR Yes, GraphQL does support a sort of pseudo-join. You can see the books and authors example below running in my demo project. Example Consider a simple database design for storing info about books: create table Book ( id string, name string, pageCount string, authorId string ); create table Author ( id string, firstName string, … Read more