I want give OR relation between tax_query and meta_query:
$post_args = array('post_type' => 'post',
    'order'     => 'DESC',
    'meta_query' => array(
     'relation'  => 'OR',
          array(
            'key' => 'client_segment',
            'value' =>$client ,
            'compare' => 'IN',
          ),
          array(
                'key'  => 'filtered_date',
                'value'=> array($start_date, $end_date),
                'compare'   => 'BETWEEN'
            )
        ),
        'tax_query' => array(
        'relation' => 'OR',
        array(
            'taxonomy'  => 'category',
            'field'     => 'id',
            'terms'     => $term_id,
            'operator'  => 'IN')
            ),
);
$posts = new WP_Query($post_args);  
What is wrong with my code?