googleDatastore
Utility class to interact with Google Datastore
getEntity
Syntax
googleDatastore.getEntity({entityName, entityKey})Example
const entityName = "MASTER";
const entityKey = "PIPPO"
}
const ret = googleDatastore.getEntity({entityName, entityKey)
.then((res) => {
//..
})
.catch((err) => {
//..
});insertEntity
Syntax
Example
updateEntity
Syntax
Example
deleteEntity
Syntax
Example
list
Syntax
Example
Last updated