Skip to content
This repository has been archived by the owner on Sep 6, 2022. It is now read-only.

Releases: graphql-python/graphene-gae

0.1.7

14 Jun 19:49
Compare
Choose a tag to compare

0.1.7 (2016-06-14)

  • BREAKING: Fixed behavior of KeyProperty to expose GraphQL Global IDs instead of internal ndb.Key values. (PR #16)

0.1.6

10 Jun 21:38
Compare
Choose a tag to compare

0.1.6 (2016-06-10)

  • Changing development status to Beta
  • Added NdbNode.global_id_to_key PR #15

0.1.5

08 Jun 16:55
Compare
Choose a tag to compare
  • Fixed behavior of ndb.KeyProperty (PR #14)

v0.1.4

02 Jun 05:49
Compare
Choose a tag to compare
  • 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.