We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4033baf commit c381d01Copy full SHA for c381d01
src/schema/associations.ts
@@ -162,7 +162,7 @@ export async function buildAssociations(
162
if (!Array.isArray(file)) {
163
file = [file]
164
}
165
- associations[key as keyof Associations] = await load(file, options)
+ associations[key as keyof Associations] = await load(file, options).catch((e: any) => {})
166
} else {
167
const load = associationLookup[key] ?? defaultAssociation
168
if (Array.isArray(file)) {
0 commit comments