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.
Hi, is it possible to return `key identifier` in the props (so that one doesn't have to loop through the entities to get ti)? e.g. Kind = User Key Identifier=auto-generated...
On [the Datastore class reference](https://cloud.google.com/nodejs/docs/reference/datastore/latest/datastore/datastore) and [the Transaction class reference](https://cloud.google.com/nodejs/docs/reference/datastore/latest/datastore/transaction) pages, the respective methods `insert`, `update`, and `upsert` all have this misrendered method description: `Maps to , forcing the method...
#### Environment details - OS: MacOS - Node.js version: 16.15.0 - npm version: 8.5.5 - `@google-cloud/datastore` version: 7.0.0 #### Steps to reproduce Not sure if I'm missing something but currently...
#### Environment details - OS: n/a - Node.js version:14.18.1 - npm version:8.3.0 - google-cloud-node version: `@google-cloud/[email protected]` #### Steps to reproduce 1. require `google-cloud` 2. create Datastore client for a project...
`excludeFromIndex` using wildcard `.*` on non-existing data causes `TypeError: Cannot read property 'entityValue' of undefined`. For example, ```typescript datastore.save( key, { prop: 'dummy', }, excludeFromIndexes: [ // this just ignored...
I'm having an issue where when I use the select method on a query I get no results. I have a simple datastore holding user profile data under the Profile...
This PR adds additional documentation for running the system tests including setup tasks that need to be done which aren't particularly obvious.
Region tag `datastore_v1_generated_DatastoreAdmin_CreateIndex_async` is referenced in a comment but there's no matching sample.
Let's say you save this entity: ```typescript await datastore.save([{ key: datastore.key(['TEST']); data: { emb: { name: 'first', value: 1, }, }, }]); ``` You can they run a query to...
Hi! This is definitely a feature request to get more visibility into what is going wrong when using the NodeJS Datastore client library. **Is your feature request related to a...