This topic was automatically generated from Slack. You can find the original thread here.
Is there a way to save multiple key-values in the data store at once? (rather than saving them one by one)
This topic was automatically generated from Slack. You can find the original thread here.
Is there a way to save multiple key-values in the data store at once? (rather than saving them one by one)
Something like:
const values = {
"a": 123,
"b": 456,
"c": 789
}
this.dataStore.set(values);
And then
this.dataStore.get("a");
this.dataStore.get("b");
this.dataStore.get("c");