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 ed88d19 commit b2b49ffCopy full SHA for b2b49ff
packages/server/convex/courseOfferings.ts
@@ -120,7 +120,7 @@ export const getCourseOfferings = protectedQuery({
120
.eq("term", term)
121
.eq("year", year),
122
)
123
- .collect(),
+ .take(300),
124
ctx.db
125
.query("courseOfferings")
126
.withSearchIndex("search_course_code", (q) =>
@@ -130,7 +130,7 @@ export const getCourseOfferings = protectedQuery({
130
131
132
133
134
]);
135
136
const combinedMap = new Map<string, Doc<"courseOfferings">>();
0 commit comments