Rick182
Rick182
XXata
Created by Rick182 on 7/10/2024 in #help
Preview branches are not being created for Vercel/Github extension
Are you considering to open source the integration? 🙂 Would love to hack on it
7 replies
XXata
Created by Rick182 on 7/10/2024 in #help
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
XXata
Created by Rick182 on 6/20/2024 in #help
file attachments names have many weird requirements
thanks for the quick support!
7 replies
XXata
Created by Rick182 on 6/20/2024 in #help
file attachments names have many weird requirements
@kostas Another question: Are you currently supporting webhooks on Pro plan? This would be useful for validation after upload using a presigned url
7 replies
XXata
Created by Rick182 on 6/20/2024 in #help
file attachments names have many weird requirements
thx!
7 replies
XXata
Created by Rick182 on 5/6/2024 in #help
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:
await kyseleyClient
.selectFrom('Files')
.select([sql<Date>`"Files"."xata.updatedAt"`])
.execute()
await kyseleyClient
.selectFrom('Files')
.select([sql<Date>`"Files"."xata.updatedAt"`])
.execute()
Isn't it a jsonb object aswell?
3 replies
XXata
Created by Rick182 on 3/8/2024 in #help
Directly connect to Postgres instance
Cool! By upgraded you mean the "Pro" Plan? Triggers can be implemented as well, right?
4 replies
XXata
Created by Rick182 on 12/21/2023 in #help
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
XXata
Created by Rick182 on 12/19/2023 in #help
Idea for Table-UI
yes I mean "visible". Sometimes, the toggles just refresh without any reason and everything is selected again. An example for this is when switching the branch and back.
4 replies
XXata
Created by Rick182 on 10/17/2023 in #help
Slow Intellisense using VSCode on large Typescript Project
Sent a mail 👍
30 replies
XXata
Created by Rick182 on 10/17/2023 in #help
Slow Intellisense using VSCode on large Typescript Project
Still the same error. I'm on version 0.26.9
30 replies
XXata
Created by Rick182 on 10/17/2023 in #help
Slow Intellisense using VSCode on large Typescript Project
Recompiling... 🥱
30 replies
XXata
Created by Rick182 on 10/17/2023 in #help
Slow Intellisense using VSCode on large Typescript Project
@kostas I came across Type instantiation is excessively deep and possibly infinite. for this code:
const summary: { summaries: [{ total: number }] } = await this.client.db.Candidates.summarize({
summaries: { total: { count: '*' } },
filter: { $all: allFilters },
columns: [],
consistency: 'eventual'
});
const summary: { summaries: [{ total: number }] } = await this.client.db.Candidates.summarize({
summaries: { total: { count: '*' } },
filter: { $all: allFilters },
columns: [],
consistency: 'eventual'
});
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
XXata
Created by Rick182 on 10/24/2023 in #help
Can IDs of rows in different branches collide?
thanks for the super quick response!
3 replies
XXata
Created by Rick182 on 10/17/2023 in #help
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