upcoming tribe events in query with other post types

<?php

/** meta query in facet's listing builder query dev mode for tribe upcoming events
 ** when the tribe_event cpts is combined with other post types
 ** only for non-recurring events
 **/


"meta_query" => [
    "relation" => "OR",
    [
      "key" => "_EventStartDate",
      "compare" => ">",
      "value" => "date|now"
    ],
    [
      "key" => "_EventStartDate",
      "compare" => "NOT EXISTS"
    ]
],