const { data: bids} = useMoralisQuery(“BidMade”);
Works fine, and we use this to find information about bids on our Auction Smart contract
I want to use a user query to resolve ethAddress to usernames
const { data, error, isLoading } = useMoralisQuery("User", query =>
query
.equalTo("ethAddress", 0x123213213EFEWFpropperethaddress)
.limit(1),
);
does not work. Is there any function like equalTo and .limit(1)?