[Fixed]-Filter objects across multiple tables in Django database mapper

1👍

I’m not sure that it is what you want, but check this:

myUser = User.objects.get(pk = 100)
your_items = Items.objects.filter(order__user = myUser)

Leave a comment