I need to generate QR codes for my dynamic pages. How can I obtain the URL of each dynamic page using VELO code? I have a collection and a field containing the content of the dynamic page called “Properties”. How can I retrieve the complete URL or the final URL of the page in a query?
My code is;
const collectionId = “Inmuebles”;
**const** results = **await** wixData.query(collectionId)
.eq("referencia", referencia)
.find();
return results.items[0].Properties
ERROR: Not URL.

