create Dynamic content on Repeaters

Hi Ido,

Good day!
I have some question.

wixData.query("myCollection")
  .eq("status", "active")
  .find()
  .then( (results) => {
    $w('#repeater1').data = results.items;
  } )
  .catch((err) => {
    console.log(err);
    });

in the line

.eq(“status”, “active”)
the status is where I can place the _owner?
and what is that active?

I’m bit confuse of that active guy!
Thank you,
Geo