Schema Type Info Not Propagating In Svelte / VSCode
I have defined a schema like this...
...and confirmed via the dashboard that this is the schema reflected on convex's server.
I noticed as I started using useQuery() in my svelteKit app that I wasn't getting field name completion on the returned documents.
My svelte route looks like this...
...and it is definitely working in the sense that I can generate content on the page based on the reactive state of query (this is fantastic, BTW).
BUT, if I hover over
api.instance_groups.get in VSCode, I see the type information shown in the attached screenshot.Shouldn't that
any be the actual type of the document as defined in the schema?Or maybe I'm barking up the wrong tree. But something means that VSCode doesn't know the types of the returned documents.

