V
Size: a a a
V
AE
V
AE
NK

yp
DB
SS
SS
type Book {
title: String!
author: Author!
}
type Author {
name: String!
books: [Book!]!
}
А потом сделать запрос видаquery {
books {
title
author {
name
}
}
}
Как он поймёт, что между Author.books и Book.author связь one-to-many? Как решается проблема N+1?IM
yp

NP
NP
PG

yp
P
P
P
yp