What is the reason I can't see the object property?

Hello, when I try to view the properties of an object I don’t see the properties that has a field type " Multiple-Reference". Why is this happening?

Object in Content manager

Code
wixData.query( “Products” )
.find()
.then(result => {
console.log(result.items[ 0 ])
})

Developer console

Because multi-reference field is not part of the returned object.
As far as I know (and I may be completely wrong) it’s not a real field in your collection, and it’s not an array value that belongs to this collection.The reason you see it in the data manager is due to an on the fly query that runs under the hood.