Elvis Pranskevichus

Results 331 comments of Elvis Pranskevichus

Yeah, this should be possible via `ioctl` on the transport socket, which you can get in `_connect_addr`: `tr.get_extra_info('socket')`.

Support for migration rollback, resets etc is part of the migration system design (initially discussed in [RFC 1000](https://github.com/edgedb/rfcs/blob/master/text/1000-migrations.rst)), with support for squashing and resets coming soon, but support for a...

Should be easy to support `Bar UNION Baz` is essentially equivalent to `Bar extending Baz`, we just need to generate DMLParts from `union_components` too.

Try connecting with `direct_tls=True`

Hm. I get a slightly different error: ``` edgedb error: InternalServerError: operator does not exist: text = uuid ```

Argh, it appears we _can't_ call `recv` functions directly from SQL because they are declared as receiving `internal`, which stands in for their internal buffer pointer. I'd wrongly assumed that...

The culprit is this bit: ``` ALTER TYPE default::Chain { CREATE REQUIRED LINK logo -> default::Logo { SET REQUIRED USING (SELECT (INSERT default::Logo { url := 'some_url' }) ); };...

> Could you statically link it so it works both on musl and glibc systems? That would be hard to do, because the server package is not a simple executable,...

Hi @aradalvand! Thank you for the feedback! The bottom line is that the current GraphQL implementation is essentially an experimental proof-of-concept extension. We should be more upfront about this in...

Apollo supports any GraphQL-compliant server (https://www.apollographql.com/docs/studio/getting-started/#3-register-your-schema), so you should already be able to plug EdgeDB as a subgraph via schema introspection, e.g: ``` rover subgraph introspect http:///db//graphql | rover subgraph...