nodejsとgoogle cloudデータストアを使用してすべてのデータを取得する方法があります。Google Datastoreのクエリ(nodejsを使用)
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);
});
カスタムクエリを実行する方法や、単にnodejsとgoogle-datastoreを使用してフィルタを設定する方法はありますか。 nodejsとgoogle-dataStoreを使用しているクエリの例は1つしか見つかりませんでした。