- the request invokes an httpAction
- httpAction invokes 1 internal mutation and 1 internal query
- the query has a big index, wondering if this is why its taking 2s...2+s is a lot.
- this is on a convex starter instance; wondering if pro helps significantly
return await db
.query("collection")
.withIndex(
"by_one_two_three_four_five_six",
(q) =>
q
.eq("one", oneVal)
.eq("two", twoVal)
.eq("three", threeVal)
.eq("four", fourVal)
.eq("five", fiveVal)
.eq("six", sixVal)
)
.unique();