This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import wixData from 'wix-data'; | |
$w.onReady(async function () { | |
// Write your JavaScript here | |
const count = await wixData.query('Bookings/Services').eq('serviceName','Swim').count(); | |
console.log(count); | |
} |