Hello,
I saw the optimization and found this:
Don’t store properties whose value is null , empty String/Array/Object , or a known default.
In my schema product the brand can be null, so I should not set the brand to null ? For optimization I have to remove the brand prop or ?
{
productId: "1",
name: "product",
brand: string | null;
}