I would like to create a custom table that stores a totally new type of information. As a result I am thinking of storing it on a sub-property of the store metafield. Something like this:
store.trades.firstName
store.trades.lastName
store.trades.tradeDate
store.trades.itemsQuantities
In SQL the last field, items would be a separate table. Here I’m thinking of simply stringifying an array.
Is this the best approximation of a custom table for this use case or is there a better way?