Different count of items in Preview Vs. Live

Could you please help me with this one? These are my collection’s items count in Live. Many parts are left not counted, rather randomly as far as I can tell.

And this is what I see in Preview Mode. Sandbox/Live properly synced. All good.


And this is the code, multiplied as many times as the categories (text boxes) shown above.

$w.onReady(function () {

(...) 

$w("#dataset1").onReady( () => {

wixData.query("LawDatabase")
  .eq("tags","13Α")
  .count()
  .then( (num) => {
 let numberOfItems = num;
    $w("#count13A").text = num.toString()
  });
  
  (...)
    
  });
  });

So, any idea why is this happening? Why I see zeros in Live site?

A wild guess: you have not synced Sandbox (Preview database) to Live.

Hi, you don’t need to wild guess because I’ve already given this to you, if you’d read my post, which only has 2 big screenshots, ~10 lines of sample code, and only 6 sentences in natural language (english) to read.

How more minimal must I become to be sure that I’m being read and understood?

Could I have at least a confirmation that this is not an internal-Wix problem please?