Hi.
I have a collection called Categories where I keep category entries for Posts. I have a question regarding handling of the Category field in the Posts collection using the relationship type. In the Category collection the title field has localized: true. Do I need to do the same and use localized: true for the category field in the Posts collection where I use the relationship type? I did that as below but it seems redundant as the db entries for all locale entries are the same with reference to the same object id from the Categories collection. Thanks.
// Posts.ts
...
{
name: 'category',
label: 'Category',
type: 'relationship',
relationTo: 'categories',
required: true,
localized: true,
},
...