- GraphQLHandler GET supoort ([PR #27](#27))
- Fixed DeadlineExceededError import swo connections properly handle timeouts
- Improved behavior of NdbConnectionField when transform_edges also filters out some edges ([PR #26](#25))
- Added transform_edges to NdbConnectionField ([PR #25](#25))
- Added _handle_graphql_errors hook to GraphQLHandler
- Added missing support for StructuredProperty
- Upgraded to Graphene 1.0
- Each NdbObject now exposes an ndbId String field that maps to the entity's key.id()
- Added ndb boolean argument to NdbKeyStringField so now when looking at KeyProperty we can fetch either global GraphQL id or the NDB internal id.
- Made connection_from_ndb_query resilient to random ndb timeouts
- BREAKING: Fixed behavior of KeyProperty to expose GraphQL Global IDs instead of internal ndb.Key values. ([PR #16](#16))
- Changing development status to Beta
- Added NdbNode.global_id_to_key [PR #15](#15)
- Fixed behavior of ndb.KeyProperty ([PR #14](#14))
- NdbConnectionField added arguments that can be used in quert:
- keys_only - to execute a keys only query
- batch_size - to control the NDB query iteration batch size
- page_size - control the page sizes when paginating connection results
- Added support for LocalStructuredProperty.
- Given a property ndb.LocalStructuredType(Something) it will automatically map to a Field(SomethingType) - SomethingType has to be part of the schema.
- Support for repeated and required propeties.
- Added graphene_gae.webapp2.GraphQLHandler - a basic HTTP Handler to process GraphQL requests
- Updated graphene dependency to latest 0.10.1 version.
- NdbConnection.from_list now gets context as parameter
- First release on PyPI.