import { query } from "./_generated/server"; export const list = query({ args: {}, handler: async (ctx) => { return await ctx.db.query("categories").withIndex("by_slug").order("asc").collect(); }, });