I’ve added some custom fields to my members and am querying it in the backend with the code below, but the result does not include the custom fields. What am I doing wrong?
return wixData.query("Members/PrivateMembersData")
.eq("loginEmail", request.query.email)
.find(options)
.then((members) => {
// etc