We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
aa2df39
select_related
prefetch_related
await Post.objects.select_related(["author", "categories"]).get() await Author.objects.prefetch_related("posts__categories").get()
await Post.objects.select_related([Post.author, Post.categories]).get() await Author.objects.prefetch_related(Author.posts.categories).get()