How to query transactions from specified time period

Hi

It seems that I am unable to query or don’t know how to use the from and till to search for transactions for specified time period

any help is appreciated

If possible, how would I create above from one block height to another . E.g. from block *374 to *388 and show transactions happening between blocks specified

{
ethereum(network: bsc) {
dexTrades(
options: {desc: “block.height”, limit: 10000}
date: {before: “2021-12-24”}
makerOrTaker: {in: “0x693ff254f2e07f4852193f8bf347b3776c630ce4”}
height: {}
any: {blockHash: {in: “13728703”}}
) {
transaction {
hash
index
}
block {
height
}
}
}
}

Am i doing something wrong here? why am i not seeing any transactions pertaining to selected block?

Thanks