Displaying Database Tags in a Repeater

Export function is created using the properties panel , if you want to put an element’s onReady function under the page’s onReady function then see below.

Since you said operatorTypes is the field key then you should start with something like this:

$w.onReady(function () {
   $w("#repeater2").onItemReady( ($item, itemData, index) => {
      let tags = itemData.operatorTypes;
      //continue your code here
   });
});