Man, unfortunately not. The querys often have hundreds or even thousands of rows, it will depend on the size of the database. They are really great files. In Postgres you can better organize the querys using one or several CTE's (Common Table Expression)
WITH cte AS (
SELECT
tabela1.coluna1,
tabela1.coluna2,
tabela1.coluna3
FROM
schema1.tabela1
)
SELECT * FROM cte
The CTE is a temporary table that only exists during the execution of the query.
Reducing the size itself is impossible, but to "break" into smaller pieces to aid in both reading and execution.