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

The official Python client library for EdgeDB

Results 146 edgedb-python issues
Sort by recently updated
recently updated
newest added

We want the distinct lists to behave reasonably when created from scratch and when fetched from the database. Special care must be taken if the fetched data is incomplete or...

ORM

We need model variants that don't show up as having `id` as one of the input fields in order to be used by the "create new" FastAPI workflow. We need...

ORM

`MyType.select(computed=...)` should be prohibited at the type level if `MyType` doesn't have `computed`. We won't be able to unpack fields we don't have definitions for, so we have to simply...

Attempting to use the AI search function like: ```python search_results = ai.search(default.Chunk, std.str("tigers")).order_by(distance="asc").limit(3) result = await client.query( search_results.select( object=lambda s: s.object.select(content=True) ) ) ``` Fails with this error: ``` AttributeError:...

This shouldn't rely on any providers: they all work by setting the auth token cookie, so signing out is just removing this cookie in response to an HTTP `GET`.