From an environment where you see logs e.g. in Datagrip, run:
BEGIN;
DROP TABLE <schema.tableName> CASCADE;
ROLLBACK;
In the Output/logs tab you will see all the objects that would be deleted. The rollback command reverts back the delete of all the objects.