so i have a database with column _id
in my query I tried to do this but it returns none because the equalTo of ID I think is not right. because when I tried ethAddress instead with a specific value it returns something.
const {data: claimData} = useMoralisQuery(
"Transactions",
(query) =>
query
.equalTo("id", showTxnId),
[],
);