There is a method to get all the data using Node.js and Google Cloud Datastore.
var query = ContactModel.query();//contact model is a schema which instantiates gstore schema
query.run().then((result) => {
const response = result[0];
var entities = response.entities;
callback('',entities);
});
Is there a way to run custom query or simply say filters using Node.js and Google Cloud Datastore. I could find only one query example using Node.js and Google Cloud Datastore.