Response Mapping for Join Queries?

0

If I have a resolver that is an SQL query (on an RDS database via the Data API) that has a join on it, how do I map the response to the query to the 2 types in the schema?

type Book {
  author: Author!
  title: String!
  etc
}

type Author {
  name: String
  etc
}

and the resolver SQL query looks like

select * from books left outer join authors on (book.author_id = authors.id

It seems like such a common thing to do I'm sure I'm missing something obvious but also I'm surprised there isn't an example in the documentation.

No hay respuestas

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas