[Fixed]-Django – querying with ForeignKeys

1👍

You should use django relation lookups:

Content.objects.get(delivery__permissions=self.request.user)

I’m not really getting what you are trying to do with Q though?

Leave a comment