Did anybody get autotables to work with related fields in custom cells? To me it seems as if the related data is not accessible here... something like this:
export const CustomTable = () => {
// Renders a table with a custom column "Customer name", and the email column
return (
<AutoTable
model={api.shopifyProduct}
columns={[
{
header: "product ",
render: ({ record }) => {
return (
<div>{record.title} +"-"+{record.productVariant.title}</div>
);
},
},
...,
]}
/>
);
};