const country = await db.query.countries.findFirst({
with: {
countryLanguages: {
where: eq(countryLanguages.slug, countrySlug),
}
},
});
const country = await db.query.countries.findFirst({
with: {
countryLanguages: {
where: eq(countryLanguages.slug, countrySlug),
}
},
});