@evgeniy theres no way that I'm aware of to inject a filter into the query used for extracting the data from the database but there are a few ways to do this downstream once the data is extracted from the table:
1. let the full dataset replicate to your destination then use something like dbt to create a model i.e. view on top of that raw data that only selects your desired block_id. This is a common pattern when loading into warehouses
2. use meltano
inline data mapping functionality to filter for block_id = 1 before loading into the destination