Retrieve "fulfilled by" information

On each product page, there is a “fulfilled by” section where I have 3 options. See below:

I’d like to retrieve this information using wixData.
I’ve tried to retrieve a given product like this:

wixData
 .query("Stores/Products")
 .eq("_id", 'abc')
 .find()
 .then((res) => {
   console.log(res)
 })

But the record returned does not contain this information. How can I get this information?