2.3.0
版本发布时间: 2020-06-05 05:59:46
graphql-python/graphene-sqlalchemy最新发布版本:v3.0.0rc1(2023-12-05 05:43:04)
Batching
Batching can be now enabled via the batching
param:
- we can configure all the fields of a type at once via
SQLAlchemyObjectType.meta.batching
- or we can specify it for a specific field via
ORMfield.batching
. This trumpsSQLAlchemyObjectType.meta.batching
.
See relevant PR: https://github.com/graphql-python/graphene-sqlalchemy/pull/253 https://github.com/graphql-python/graphene-sqlalchemy/pull/254 https://github.com/graphql-python/graphene-sqlalchemy/pull/260
Add support for Non-Null SQLAlchemyConnectionField
See https://github.com/graphql-python/graphene-sqlalchemy/pull/261
Simplify access to model Connection
One can access the connection on the SQLAlchemyObjectType
directly. ex: MyModel.connection