In the example here: https://www.mongodb.com/docs/realm/sdk/react-native/examples/define-a-realm-object-model/#define-an-embedded-object-property
How can I make the addresses
field optional in the BusinessSchema?
I have tried addresses: { type: "list?", objectType: "Address" },
and addresses: 'Address[]?'
but both seem to raise errors.