2.3.0
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: #253 #254 #260
Add support for Non-Null SQLAlchemyConnectionField
See #261
Simplify access to model Connection
One can access the connection on the SQLAlchemyObjectType
directly. ex: MyModel.connection