From 1251eef276b75b49281ee95fa8db83590eac0960 Mon Sep 17 00:00:00 2001 From: Gio Date: Wed, 22 Mar 2023 09:41:35 -0700 Subject: [PATCH] Update eager-loading.md Was missing a comma on line 139 following 'Instruments' --- docs/advanced-association-concepts/eager-loading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-association-concepts/eager-loading.md b/docs/advanced-association-concepts/eager-loading.md index 7298faf19..0cfabd3ad 100644 --- a/docs/advanced-association-concepts/eager-loading.md +++ b/docs/advanced-association-concepts/eager-loading.md @@ -136,7 +136,7 @@ When eager loading, we can also filter the associated model using the `where` op User.findAll({ include: { model: Tool, - as: 'Instruments' + as: 'Instruments', where: { size: { [Op.ne]: 'small'