Kurt Rottmann

Results 4 comments of Kurt Rottmann

Another name can be `Computed Fields` like in: https://www.edgedb.com/docs/edgeql/select#computed-fields https://www.prisma.io/docs/concepts/components/prisma-client/computed-fields

Trying to help with the original problem, Pydantic has an "ORM Mode" for creating Pydantic models from arbitrary class instances since v0.28 (2019-06-06). You must enable `orm_mode` Config property and...

@agritheory My need to use Pydantic is just to use EdgeDB with FastAPI and get all the benefits of this web framework, mainly the automatic interactive API documentation.

> Why? Does it specifically look for `list`? Pydantic models can specify `set` or `list` fields, but validation fails when used against `edgedb.Set` or `edgedb.Array` respectively. I understand that it...