I have following code:
name: 'address',
type: 'group',
label: 'Addresse',
interfaceName: 'Address',
fields: [
{
name: 'street',
type: 'text',
label: 'Street',
required: true,
},
{
name: 'houseNumber',
type: 'text',
label: 'House number',
required: true,
},
{
name: 'postalCode',
type: 'text',
label: 'Postal code',
required: true,
},
],
},```
When applying columns in the admin UI, a JSON is showed instead of the actual data of the fields. Is it possible to only receive the right columns, f.e. `address.name` ?