Sylvain
Sylvain
Yes, you are correct! Thanks for reporting the issue, I will fix it soon!
I am facing the same problem trying to use a Custom Driver. Any updates on that issue?
@corbanvilla does your implementation supports adding multiple columns as `fulltext` index (like in the below example)? ```ts fulltextIndex('title_content_idx').on([Post.title, Post.content]) ``` ```mysql CREATE FULLTEXT INDEX `title_content_idx` ON `Post` (`title`, `content`); ```
@Tenrys In theory, you should already be able to access the appropriate underlying error from your Terminal (CloudWatch on AWS). Please let me know if this is not the case....
We could imagine a new client option to enable unfiltered errors in GraphQL response. However, since it is not a good security practice, I would name it accordingly: ```tsx const...
I also faced the same issue, but it only appears when first launching the app. Resizing the window afterward fixes the rendering issue. Here's a workaround that worked for me....
Installing zod `3.22.3` fixed it for me!
In a similar fashion, the https://github.com/unjs/std-env/ package exposes a Platform-Agnostic `env`.
So one of my biggest pain points with status pages is how hard it is to automate the monitoring of third-party systems that my product relies on. Let's say I'm...
I'm having the exact same issue pointing to a local plugin, using the example code from the docs. Downgrading to `[email protected]` worked as a temporary fix.