Convex type errors and modular folder structure
code:
// Get links for this profile
const links = await ctx.db
.query("links")
.withIndex("by_profile_id", q => q.eq("profileId", profile._id))
.filter(q => q.eq(q.field("isDeleted"), false))
.collect();
I'm opening this support ticket to ask if moving my schema into separate files within the schema folder is something that is supported/recommended and why these type issues started after doing this.
Thanks!

