nodejs-datastore
nodejs-datastore copied to clipboard
Node.js client for Google Cloud Datastore: a highly-scalable NoSQL database for your web and mobile applications.
Currently the `entityFromEntityProto`/`decodeValueProto` method, which is used to cast datastore entities into Javascript objects, converts `DatastoreInt` and `DatastoreDouble` to `Number` by default. While this was done to make the surface...
As discussed in #754, the auto conversion to datastore types doesn't work particualrly well in Node.js. Numbers need to be coverted to int, double, but there are times it makes...
1) Is this a client library issue or a product issue? I guess a bug in the client library (`"@google-cloud/datastore": "^6.3.0"`) #### Environment details - OS: Linux - Node.js version:...
Hello, I am currently trying to construct a RESTful API using Typescript, using Google Datastore as the database. I was just wondering, what is the best practice for implementing a...
The Datastore emulator supports-- and automatically use sometimes-- IPv6 addresses (https://cloud.google.com/sdk/gcloud/reference/beta/emulators/datastore/start). Our code has only been parsing input such as "localhost:8081", which is still the default emulator address format. However,...
**Is your feature request related to a problem? Please describe.** While the interfaces are well typed, we have to resort to casting results when generics could provide an elegant solution....
Hello, I use several option flags for datastore that aren't defined in the current type definition. Today I define my options as 'any' but I'd like to be able to...
Hi all! I wonder if it is possible to create a entity adding the parent URL safe key. Does anyone know? Thank you in advance Edit: I see that parent...
This PR is just like the other PR on count aggregation, but it contains only the relevant changes to make the count filter work.
The problem seems to be that @types/cacheable-request depends on "@types/responselike": "*" and therefore refers to 3.0.0 when it should refer to 1.0.0. I suggest that package-lock.json be included in the...