Graphene Gae Versions Save

GraphQL Support for Google AppEngine [DEPRECATED - Looking for maintainers]

0.1.7

7 years ago

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

7 years ago

0.1.6 (2016-06-10)

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

0.1.5

7 years ago
  • Fixed behavior of ndb.KeyProperty (PR #14)

0.1.4

7 years ago
  • 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.