Hello, I am running a query to filter for deposits based on a user’s account. However, I am running into an issue where the server will only return results if the account value is a string, but not for an interpolated string. Obviously this is an issue to dynamically return data for different users as they come to the site.
This filter does return correct results:
query.equalTo("user", "0xa638ec13a0905a66b84876a1c89e262a647feb37");
This filter does not return correct results:
query.equalTo("user", `${0xa638ec13a0905a66b84876a1c89e262a647feb37}`);
Any ideas what could be happening here?