djbalinD
Convex Community2y ago
11 replies
djbalin

Slow query

Hey, this very simple query is running surprisingly slowly (150-300 ms):

export const getAllCategories = query({
  handler: async (ctx) => {
    const categories = await ctx.db.query('category').collect();
    return categories;
  },
});


For reference, the category table only contains 20 documents of this form:
{
  color: "#FFD9D9",
  emoji: "💼",
  enabled: true,
  slug: "career",
}
Was this page helpful?