edgedb-js
edgedb-js copied to clipboard
The official TypeScript/JS client library and query builder for EdgeDB
edgedb-js version: ^0.19.8 edgedb server: 1.1 edgedb cli: EdgeDB CLI 1.1.0-dev.742+9b148e5 ``` # dbschema/default.esdl module default { type A {} type B {} type C { multi link a_or_b ->...
Given the following minimal schema: ``` type Person { required property some_prop -> str; required property some_other_prop -> str; constraint exclusive on ( (.some_prop, .some_other_prop) ); } ``` I would...
https://github.com/edgedb/edgedb-deno#tls I really don't understand what value should the environment variable have (is `true`? is `yes`? a truthy value will do the trick?) There is nothing about `--allow-insecure-binary-clients` in `edgedb...
Hi, I am trying to connect to the edgeDB instance, but the connection fails Authentication Failed. I have a windows system and have installed edgedb by docker. Following is the...
Hi, I see that the command line for edgeql supports line/col causing an error;  Any ways we can get this feedback from the js client?
Fixes #446
**Code** ```typescript const query = e.select( e.set( e.select(e.BaseObject), e.select(e.BaseObject), ), (obj) => ({ filter: e.op(obj.id, "!=", e.uuid("00000000-0000-0000-0000-000000000000")), }), ); ``` **Schema** N/A **Generated EdgeQL** ``` WITH __scope_0_BaseObject UNION std :=...
_[See here for a branch of my repo](https://github.com/transitmatters/mbta-gtfs-edgedb/tree/minimal-ts-repro/) pared down to a minimal reproduction of this issue._ I have a simple function that returns an EdgeQL select expression: ```ts export...