Skip to content

2.3.0

Compare
Choose a tag to compare
@jnak jnak released this 04 Jun 21:59
· 46 commits to master since this release
20ecaea

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 trumps SQLAlchemyObjectType.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

And other minor fixes