Help running an internal query
npx convex dev is running. Here's what I'm doing:
In
packages/convex-server/convex/server/internal.ts, I define the internalQuery: In
packages/convex-server/convex/server/actions/index.ts, I define the internalAction:In my nodejs server, I try to call it like this:
I'm getting 2 errors - the 1st is a Typescript error when I try to return data in the internalAction, the 2nd is that
getLastReadMessageByUserIdAndSectionId is not available in api.server.actions.index . How can I resolve this?

