Filtering a database query - need help

I’ve got a query that gets orders from my database.

Each order has ‘bought_products’ attached.

These products have an id.

Now I want to create the following filter:

So effectively I’ll get a list of orders where ONLY 71 is bought, and 72 was NOT bought.

Here’s a visualisation:

How do I do this?
If I use the .where() formatter to only include orders that have id 71 I’ll not know if that order also had bought product 72.

I think I need the formatter “where does NOT contain”. But that doesn’t exist.
So then I think I need to use the .filter() formatter and create my own filter, but not sure how to use it.
image

If it helps, here’s the db query:

Community Page
Last updated: