Questions tagged [google-cloud-datastore]

Google Cloud Datastore is a highly flexible and fully-supported NoSQL document storage solution designed specifically for web and mobile applications.

Attempting to retrieve an entity from the datastore, only to receive an undefined result, indicating that it was not

Currently, I am delving into the world of Google Datastore with node.js. After successfully storing an entity on the server, I encountered a challenge when trying to retrieve the newly created entity from my datastore. namespace: default kind: User http ...

Utilize Javascript to perform operations on ndb.key()

When working with my application, I encounter keys that are created within a Python system and written to Google Datastore. To access the corresponding data, I require the IDs of these items, which are contained in the 'key' string. Unfortunately, since ...

Struggling to retrieve data from GCP DataStore despite closely following the guidance provided by Google documentation

I attempted to upsert a record in DataStore and then retrieve it based on Google's official documentation. While the upsert operation was successful, I encountered issues with the retrieval process. Could it be possible that the documentation is outdated? ...

GAE/P: Streamlining the transition to NDB

After making the transition from db to ndb, I've encountered more challenges than I had expected. I have converted my ReferenceProperty to KeyProperty, but now I need to add explicit get() calls everywhere a ReferenceProperty was used since it was previou ...

Issue with WTForms incorrectly storing data types into the database

I have been working on a Python Flask application that utilizes WTForms and Google Cloud Datastore. No matter what type of field I use in WTForms, the value is always saved as a string. Initially, I followed the standard method of defining a model in Pyth ...

Google NDB: Including a new entity without an existing parent entity

Currently, I am developing a web application using Google App Engine (Python / Webapp2) and Google NDB Datastore. To my surprise, when trying to add a new entity with the parent key of a non-existent entity, an exception was not thrown - instead, the entit ...