google-cloud-datastore
google-cloud-datastore copied to clipboard
Low-level, Protobuf-based Java and Python client libraries for Cloud Datastore. Check out google-cloud-java and google-cloud-python first!
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Ignored or Blocked These are blocked by an existing closed PR and will...
Trying to run aggregation queries in the emulator produces this error: ``` com.google.datastore.v1.client.DatastoreException: Method google.datastore.v1.Datastore/RunAggregationQuery is unimplemented, code=UNIMPLEMENTED ``` This is causing problems for Objectify users because `count()` is now...
This is a result of the emulator being built on the Cloud Datastore API for App Engine, which only distinguishes between NOT_FINISHED or not. Since the `more_results` flag is a...
See discuss in: https://groups.google.com/d/topic/gcd-discuss/BGecRthhJ1w/discussion
While datastore supports Null values, add_properties will give you an error if you try to use add_properties with a null value for any field.
When setting a `JSON Property` type value to an entity, `TypeError` is raised.
This library should support the `MultiQuery` class ([docs](https://cloud.google.com/appengine/docs/standard/python/refdocs/google.appengine.api.datastore), [source](https://cloud.google.com/appengine/docs/standard/python/refdocs/modules/google/appengine/api/datastore#MultiQuery)) found in the original datastore API. ### Background According to the [App Engine migration guide](https://cloud.google.com/appengine/docs/flexible/python/migrating#datastore), the original API is being phased...
There is no way to makeValue for Text type, instead of String. That's a problem when for any reason it is mandatory to have it a Text. I guess there...
Is it possible to delete `records` in *batch* using NodeJS based on *condition*? Below is sample code for batch delete, but preparing `taskKey1`, `taskKey2`... etc is not a elegant as...