[Answer]-Get all rows that foreignkey exist on other table by id filtered by employeeid

1👍

Main idea:

Question.objects.exclude(answers__user=user)

In your case (if you add related_name encuestas to respuesta FK field encuesta):

encuesta.objects.exclude(respuesta__empleado=user).filter(fecha__gt=right_now).order_by('fecha')
👤zymud

Leave a comment