Hi,
I try to use the sync function of the client as per documentation:
Stack.sync({
init: true,
})
.then(((syncResult) => {
console.log(syncResult); // displays: []
resolve();
}) as any)
.catch((e) => {
console.log(e);
reject(e);
});
It returns an empty array in the response on every call.
Hi,
I try to use the
syncfunction of the client as per documentation:It returns an empty array in the response on every call.