edgedb-js
edgedb-js copied to clipboard
The official TypeScript/JS client library and query builder for EdgeDB
**I think we need a call to discuss what we want to support with the provider and extension (or maybe I'm just not aligned with the goals and provider should...
fixes #1119 From the research I did I only found the wrong `cal` imports inside `range.ts `.
See https://github.com/edgedb/edgedb-js/blob/227f12553c67dbcf1cc89a7f34c0142e7360ae6a/packages/generate/src/syntax/range.ts#L21 In 6.0, all of our modules [have moved into `std`](https://github.com/edgedb/edgedb/pull/7743), so code generation is putting the `cal` module into `std/cal.ts`. We need to make this import dynamic somehow,...
We currently return errors that just identify that a type is mismatched, but that's not very helpful when trying to find the source of the error. We should give as...
**Schema** ```esdl module default { type User { ... multi movies: Movie; multi shows: Show; multi documentaries: Documentary; multi watching_list := ( select .movies union .shows order by .year );...
In EdgeQL, `anyscalar` is a kind of generic that binds other usages to the same concrete type when applied rather than being a union of all scalar types as the...
In our current implementation, you do not have access to the scope of the object you're using in a polymorphic query, so you're only ever able to express direct selections...
## Overview Issue: https://github.com/geldata/gel-js/issues/1290 This PR makes the return from the `param` function callable to allow composition while keeping the existing API stable. Broken down into 3 parts - Types...