Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
2.3.0.tar.gz | 2020-06-04 | 43.3 kB | |
2.3.0.zip | 2020-06-04 | 69.6 kB | |
README.md | 2020-06-04 | 800 Bytes | |
Totals: 3 Items | 113.7 kB | 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 trumps SQLAlchemyObjectType.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