Is there any code for the repeater something like in finding some results from a query that is similar to the code below, so that I could separate all of the 9 values of the radio button coming from the repeater?
wixData.query(“Database”)
.find()
.then((res)=>{
let firstItem = res.items[ 0 ];
let secondItem = res.items[ 1 ];
let thirdItem = res.items[ 2 ];
})