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

Support WebAuthn in the `gelify` integration for custom UI. In our JS code we also provide a tiny WebAuthn client that provides the correct API calls, but I'm not sure...

Add Magic Link support for the `gelify` integration when using a custom UI.

We'd like to change the current implementation of `__variants__` and `__typeof__`. ## `__variants__` -> `__shape__` `__variants__` is long to type and is also an unknown term to both Python and...

**Describe the bug** Using a model derived from a `__variant__` as `response_model` causes `object has no attribute '__gel_changed_fields__'` PydanticSerializationError. **Reproduction** 1. create a new venv 2. `pip install "fastapi[standard]"` 3....

bug
ORM

This code: ```python user = await gel_client.get(default.User, None) ``` causes these typing errors: ```bash app/api/router.py:48: error: Function does not return a value (it only ever returns None) [func-returns-value] app/api/router.py:48: error:...

Fields starting with underscore have a special meaning in Pydantic and cannot be supported out of the gate Things to fix / take care of / ideas: * Generator should...

two use cases: * you subclass our model to add a computed -- readonly * you subclass our model to add more input for your endpoints -- write/read we can...