MrFoxPro

Results 111 comments of MrFoxPro

Is it possible to add orange color?

I have same error when using `when` clause (https://github.com/edgedb/edgedb/pull/6184) ```edgeql type User { link chats := . count(__new__.chat_memberships)) do ( for new_chat in __new__.chats union ( update User filter .num...

Only workaround I found: ```esdl overloaded required content_modified_at: datetime { default := to_datetime(0); rewrite update using ( with j := __specified__ select ( datetime_current() if json_get(j, "what_to_do") or json_get(j, "looking_for")...

Would like to see some good practices for organaizing structs / code / files when there are a bunch of queries that shares similiar `shapes` and how to organize all...

Let's say I want to return Json directly without using serde. How can I do it? How to convert `edgedb_protocol::model::Json` to `axum::Json`?

```rust impl IntoResponse for edb_model::Json { fn into_response(self) -> axum::response::Response { ( [( axum::http::header::CONTENT_TYPE, "application/json".parse::().unwrap(), )], self.to_string(), ) } } ``` only traits defined in the current crate can be...

This could be partially solved by placing generated code into separate project, and setting skipLibCheck: true, but it's inconvinient.

> Is there any progress on this or any suggestions besides the one from @MrFoxPro to resolve this performance issue? I'm basically unable to work with my project now. :(...

Probably I have similiar issue with SolidJS + UnoCSS as well. Enabling `transformerVariantGroup` make Solid's HMR go crazy on first run. But then, after caching. it works fine. UPD: @webaddkevin...