let imageUrl = 'www.photourl.com/image.jpeg'; //url from upload component
wixData.query('collectionName').eq('email', 'user@mail.com').find().then((res)=> { //find the item
if (res.length) { //if item found, attach the file to the relevant item
let newItem = res.items[0];
newItem.imageUrl = imageUrl;
wixData.update('collectionName', newItem)
}
})