Hi,
I had the same issue and I solved it.
The problem comes from the cleaning data that you executed, actually, you should not truncate the table : cataloginventory_stock
It does contain initial information.
If you retrieve your Data Base, execute all query except for the TRUNCATE TABLE `cataloginventory_stock`;
It should work.
You should execute this in mysql
use <database_magento>;
insert into `cataloginventory_stock`(`stock_id`,`stock_name`) values (1,'Default');
This is working fine on 2.3.1 version.
insert into `cataloginventory_stock`(`stock_id`,`website_id`,`stock_name`) values (1,0,'Default');
Not Solved
Thanks, It's working for me the magento version 2.3.2