Scott Trinh

Results 81 issues of Scott Trinh

This brings our minimum Deno version to 1.30 which is now a year old. This seems like a fair trade off to prepare for compatibility with the upcoming 2.0 release...

This might enable some other edge runtimes as well, we will want to do some additional testing.

GIven this schema: ```esdl module default { type User; abstract type Question; type HealthQuestion extending Question; abstract type Reply { required user: User; required single question: Question; } abstract type...

Depends on https://github.com/edgedb/edgedb/issues/6724 for consistent error messages and error codes.

For some frameworks, we might have enough information from environment variables to allow running a command to configure most of the auth extension for you, at least for local development....

enhancement

We currently have a handful of optional configuration values that we allow users to set in our various auth helper libraries. We should allow setting these with environment variables. That...

enhancement

Create an [`npm init`](https://docs.npmjs.com/cli/v10/commands/npm-init) "initializer" to easily scaffold projects.

In the case that a query has polymorphic shapes where multiple subtypes return a shape that share the same property name, only the last subtype actually gets built into the...

bug

Follow the guidance provided here: https://www.typescriptlang.org/docs/handbook/modules/guides/choosing-compiler-options.html#im-writing-a-library Ensure that this works on whatever we want the minimum supported versions of TypeScript and the various runtimes to be. Also need to update...

enhancement

Right now we do not allow selecting shapes on named tuples, so in order to support FTS, the simplest way forward is to convert any named tuples to a free...