Colin McDonnell

Results 281 comments of Colin McDonnell

Would love to see to this!

I believe this would require a ground-up rewrite, since we rely on a ton of Node.js APIs from `crypto`, `fs`, `path`, `os`, `net`, `tls`, `readline`, and `stream`. Unless I'm missing...

I'm guessing this can be closed @jaclarke?

Deno support has officially landed in `[email protected]` @seanaye @hyp3rflow Basic usage guidelines: ### Generation ```bash $ deno run -A --unstable --reload https://deno.land/x/edgedb/generate.ts ``` This command supports all same flags as...

Closing because this seems to be a protocol limitation currently. ``` edgedb> insert NewPost { ....... title := "asdf", ....... content:= "asdf", ....... status := $status ....... }; Unimplemented input...

Can you show some code examples here? Ideally TypeScript would catch these errors at compile time (at least the first one).

> > e.select(e.Movie, (movie)=>({ > > filter_single: e.bool(true) > > title: true > > })); > > // { title: string } | null > > Does the existence of...

> Probably it accepting an array of strings is better With a variadic function you can use the spread operator to pass in an array of identifiers: `ident(...list)`. (This can...

> I think it's probably safe to add the rest of the types to this list Indeed good call!

No, this template tag will not be schema-aware nor can it infer types. That's virtually impossible to implement with just template literals - you should use the query builder if...