const sqlQueryFail = this.createQueryBuilder('bathingspot')
// .where(`"bathingspot"."userId" = ${userId}`)
.where('bathingspot.userId = :id', {id: userId})
.andWhere('bathingspot.id = :id', {id: spotId}).getSql();
console.log('failing query 1', sqlQueryFail);failing query