[Answer]-Queries in Django Models

1👍

You’re using the (lowercased) name of the model in your call to select_related. Instead, use the name of the field, e.g. Adjacency.objects.select_related('fk_brainframe_parent').

Leave a comment