How to mass get post editor URLs

Yes you can have all the editor links for your products. Just run a normal query for the custom post type, in this case seems like the custom post type is “product”, but you should search for the custom post type name to run the query. The query will look like this:

$args = array(
    'post_type' => 'product',
    // Put more arguments if you need to
);

$query = new WP_Query($args);

if($query->have_posts()){
    while($query->have_posts()) {
        $query->the_post();
        $post_id = get_the_id();
        //This will print every editor link for your products
        echo "https://domain.com/wp=admin/post.php?post=". $post_id . "&action=edit";

        // You can also use the function get_edit_post_link in here
        //like this: get_edit_post_link( $post_id );
    }
}

I don’t know how you want to use the editor links, but this is basically what you need to do to get them, then you can store them in an array or echo them or whatever you want.