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.

回答なし

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ