I’ve just found out there’s an ID field in every database. Is there a way for me to point at those without having to type out exactly what they are? (Like how wixUsers.currentUser.Id works?)
Not sure I got exactly what you’re asking, but the field key for the ID is: _.id
after a query promise resolved you can refer to results.items._Id
in the repeater onReady function you can use itemData._id etc…
Ah yes, that works. Thank you!