Rick182
Preview branches are not being created for Vercel/Github extension
I figured out the problem! I recently changed the org-name to which the repo belongs. Probably this caused a problem with the integration. Now, upon uninstalling and reinstalling the integration it works! Maybe some kind of error should come from Xata in cases like this?
7 replies
Non-default file attributes not accessible via Kysely query builder
Another thing that is a bit weird is the reserved
xata
column. Properties of it are not accessible using the syntax I mentioned above but only using raw SQL like this:
Isn't it a jsonb
object aswell?3 replies
My Web UI seems to be down currently
Hi, quick update: currently it works again. Still on the same session I believe. Thanks! 👍
I should have been a bit more clear in my description but I was in a rush. The workspace and the tables of my own DB were affected.
If you still want to investigate further, I'll send you my workspace ID but currently everything looks okay from my side.
PS: Can't open the Issue-Link (I think the repo is private)
7 replies
Slow Intellisense using VSCode on large Typescript Project
@kostas I came across
Type instantiation is excessively deep and possibly infinite.
for this code:
Is the deep-recursion-protection not working as expected here? This line is affected in particular: summaries: { total: { count: '*' } },
.
If relevant: allFilters
is an array of ~10 different $all
's and $any
's.30 replies
Slow Intellisense using VSCode on large Typescript Project
Hi @kostas thank you for the quick response!
I'm using the current version (0.26.9) and it seems like the problem occurs in all places.
Some info that may be useful:
I added some additional abstraction to my codebase because I thought it would increase maintainability. However, this might also contribute to the issue.
I have a custom, separate class for each table in my DB. In these classes, more complex CRUD-based functions are defined.
All classes are instantiated once and included in a singleton decorator class (single entry-point to all DB-operations).
I also defined a lot of custom types/interfaces that wrap around XataRecords which make it easier to check if certain attributes could be nullish.
I think this might be a VSCode+Typescript problem because sometimes "go to definition" also takes ages when I try to go to custom DB-code I wrote...
30 replies