From dc93eb2bda6d65d769250312860c196a2302ca8f Mon Sep 17 00:00:00 2001 From: Martin Ledoux <32564108+ledouxm@users.noreply.github.com> Date: Sun, 2 Feb 2025 02:55:01 +0100 Subject: [PATCH] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1feefec..182f100 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ const potionRecipes = await db .innerJoin("Recipes", "Recipes.resultId", "Items.id") .innerJoin("translations", "Items.nameId", "translations.id") .where("translations.value", "like", "%potion%") + .where("translations.lang", "=", "fr") .select(["translations.value as name"]) .selectAll(["Recipes"]) .execute();