Scott Trinh
Scott Trinh
When developing locally, you either need to jump through all the hoops in your operating system to allow self-signed certificates or use `EDGEDB_CLIENT_TLS_SECURITY=insecure` environment variable which will use `http` instead...
I believe you have to use `=4.6` to get _exact_ version matching in CLI commands, but I think we should also add the message we have when `edgedb.toml` specifies a...
> I'm unsure, however, what the best way would be to extend Zod with such functionality... You shouldn't need to extend Zod to support his use case, you can use...
This is the basic update via `PATCH` flow outlined here: https://fastapi.tiangolo.com/tutorial/body-updates/#warning-about-replacing
What does your `tsconfig.json` look like for this project? You might need to set `"moduleResolution": "bundler"` (see https://www.typescriptlang.org/docs/handbook/modules/theory.html#module-resolution-for-bundlers-typescript-runtimes-and-nodejs-loaders for more details). We have an open issue to rehaul the TS...
😅 I still plan on doing a "target" update here to allow building `node16` style module imports, but we do not have any progress to report on that yet.
Does this improve if you move the date you're comparing into a `with` binding? ```edgeql analyze with comp_date := (datetime_of_statement() - "1 month") select AuditLog filter .createdDatetime > comp_date ;...
Hey @tomnz ! Super excited to have people with Effect experience looking at EdgeDB, I'm a big fan myself, although I've typically used EdgeQL rather than query builder expressions in...
@riwsky Oh, just using the `query*` functions and supplying the type manually, but the queries generator is even better since it does the parameter and return type generation itself, and...
Amazing, thanks so much for the contribution! I'll take a closer look at it later today, but based on my initial light pass, it seems solid 😉 > There are...