How to get Holder count historical data on Base chain

Hello,

It’s easy enough to grab the historical data for a token on eth like so from the v2 API but not from https://streaming.bitquery.io/eap. Check the code below.
Eth query
query MyQuery {
EVM(dataset: archive, network: eth) {
TokenHolders(
date: “2024-6-18”
tokenSmartContract: “0xdefb0b264032e4e128b00d02b3fd0aa00331237b”
where: {Balance: {Amount: {gt: “0”}}}
) {
uniq(of: Holder_Address)
}
}
}

Base chain query

query MyQuery {
EVM(dataset: archive, network: base) {
TokenHolders(
date: “2024-6-19”
tokenSmartContract: “0x532f27101965dd16442E59d40670FaF5eBB142E4”
where: {Balance: {Amount: {gt: “0”}}}
) {
uniq(of: Holder_Address)
}
}
}

When attempting to run this query against the Base chain using the EAP url I get the error:
clickhouse return status 500 [500 Internal Server Error] response Code: 181. DB::Exception: Illegal FINAL. (ILLEGAL_FINAL) (version 24.5.3.5 (official build))

Can you please clarify? Thank you!
Fred