Query with 3 variables

Hi I have a query and in the query editor I want to use the meta query to show items or not. The items are a CPT built with ACF
I have a codeblock up front like this:

<?php
add_filter( 'cwicly/query/args', function( $query_args, $attributes, $id ) {
    if ($id ===  'query-c8a69dd') {
        $query_args['meta_query'][0]['value'] = date( 'Y-m-d' );
        $query_args['meta_query'][1]['value'] = 'yes';
        $query_args['meta_query'][2]['value'] = 'no';
    }
    return $query_args;
}, 10, 3 );
?>

And I have 3 meta_queries
Meta Query 1 gets the date and looks if the date given is after the current date:
image

Meta Query 2 gets a yes or no field if the item is active:
image

And the last one, Meta Query 3, gets a yes or no field in case a date is known:
image

What I want to achief is:
I want to show items that:
(Item is in the future (mq 1) OR item is set to no in case the date is not known yet (mq 3))
AND if the item is active (mq 2)

So I want (mq1 OR mq3) AND mq2.

But I don’t know how to get this done.

Do I have to work with inner queries?
Do I have to set a relation between the 3 meta queries:
image

Or do I have to set child relation in one of the 3 Meta Queries?

Can someone help?