Display ACF object field data using Elementor Custom Query

The issue can be solved with this code :

function my_cpt_query( $query ) {
    $myPostObjetField= get_field('cpt1_field_for_cpt2',$post_id,false);
    foreach( $myPostObjetField as $post_field_item_value ) {
            $ids[] = (int) $post_field_item_value;
    }
    $query->set( 'post_type', 'CPT2');
    $query->set( 'post__in', $ids);
}
add_action( 'elementor/query/13600', 'my_cpt_query' );