We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc68881 commit ad19041Copy full SHA for ad19041
playground/javascript/node/algoliasearch.ts
@@ -80,7 +80,7 @@ async function testAlgoliasearch() {
80
}
81
82
try {
83
- const analyticsClient = client.initAnalytics();
+ const analyticsClient = client.initAnalytics({region: 'de'});
84
85
const res = await analyticsClient.getTopFilterForAttribute({
86
attribute: 'myAttribute1,myAttribute2',
@@ -97,7 +97,7 @@ async function testAlgoliasearch() {
97
98
99
100
- const abtestingClient = client.initAbtesting();
+ const abtestingClient = client.initAbtesting({region: 'us'});
101
102
const res = await abtestingClient.getABTest({
103
id: 42,
0 commit comments