Skip to content

Google Apps Script(v8対応版)のコードです。

License

Notifications You must be signed in to change notification settings

NCMBMania/ncmb_gas

Repository files navigation

v8エンジン対応版Google Apps Script SDK

使い方

スクリプトのIDは 1Z8Lezd0OS6qm9W0EVQxBGx1gztqD14kXPfQxycr_rc2atOfKujiWZe7I です。

初期化

以下はプリフィックスをNCMBとした場合のコードです。

const ncmb = NCMB.init('APPLICATION_KEY', 'CLIENT_KEY');

データストアへの保存

const test = ncmb.Object('Test');
test
  .set('msg', 'こんにちは、世界!')
  .save();

データストアのデータ更新

obj
  .set('memo', new Date())
  .set('ary', ['a', 'b', 'c'])
  .save();

データストアのデータ削除

obj.destroy();

データストアの検索

const query = ncmb.Query(className);
const ary = query
  .greaterThan('number', 4)
  .equalTo('msg', 'Hello')
  .fetchAll();

License

MIT.

About

Google Apps Script(v8対応版)のコードです。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published