edgedb-js icon indicating copy to clipboard operation
edgedb-js copied to clipboard

The official TypeScript/JS client library and query builder for EdgeDB

Results 270 edgedb-js issues
Sort by recently updated
recently updated
newest added

Right now, our create app uses the typical template from the "upstream" framework. Instead we should have a consistent welcome UI that actually helps you setup and configure your application,...

Currently our full-stack templates show a link to the built-in UI even if you haven't configured the auth extension or configured the built-in UI. We should detect whether the auth...

enhancement

**Code** The code causing the error. ```typescript e.greet(e.cast(e.Name, 'greg')); ``` **Schema** ``` module default { scalar type Name extending str {} function greet(name: Name) -> str using ( "Hello, "...

**Code** The code causing the error. ```typescript e.select(e.greet('greg')).run(db); # OR e.select(e.greet('greg'), e.cast(e.str, e.set())).run(db); ``` **Schema** ``` module default { function greet(name: str, suffix: optional str) -> str using ( "Hello,...

bug

**Code** The case when it's ok ```typescript const userSubscriptions = e.select(e.User, () => ({ subscriptions: subscription => ({ role: subscription['@role'] }) })) // (parameter) user: { // subscriptions: { //...

Just tried out the next.js recipe for the first time since adding the git staging and it looks like we don't have a `.gitignore`.

enhancement

Yarn Berry uses an even different scheme for running bin scripts: it unpacks the script into a temporary directory and adds that temporary directory into the shell's environment. This mitigate...

Now that 5.x is stable, remove references to it. Add direct reference to 4.x since that is no longer the version that the "stable" pointer points to.

Get the expiration date from the auth token and set the cookie to expire when the token itself expires. PKCE sessions are slightly different. In some contexts, we do not...

If you do not specify an expiration, the cookie will expire at the end of the browser session (ie when the browser is closed). However, the browser I primarily use...

bug