MrFoxPro

Results 111 comments of MrFoxPro

@mtrmac What if I need to push same blob but with different image or tag? It refuses: `Copying blob 090d1abdb0e8 skipped: already exists`

Yeah I found it's very hard to understand what's goind wrong. Just placing `#[tracing::instrument(err, skip_all)]` before `fn encode(&self, buf: &mut BytesMut, val: &Value)` helped tremendously understand what's going on. I...

https://github.com/edgedb/edgedb-rust/pull/304 should solve this

Do I understand correctly that this will solve my problem: ```rust #[derive(Queryable, Serialize)] struct SelectedUser { id: Uuid, created_at: DateTime, phone: String, } async fn endpoint(State(AppContext { edb }): State)...

> Hey @MrFoxPro > > How are you handling > > ``` > the trait bound `edgedb_protocol::model::Uuid: Serialize` is not satisfied > ``` You can use something like this instead...

> This seems like correct behavior. Maybe you'd want the error message in the UI instead of `Failed to fetch data` I belive it should show entities that don't violate...

> Data is broken at the schema level though - wouldn't you receive the same error making an equivalent query in the CLI? In CLI it's unlikely to select all...

I often try to use UI to investigate problem. I believe a good way to do this is to show normal items and then section with broken. And Ability to...

Can you try with skipLibCheck: true in tsconfig?