Dato Config RB

hello @derrick, Iā€™m pasting the answer publicly here as well as it might benefit someone else.

In your case the SEO field is optional, and so it might be empty. You need to check for that in your script to prevent hitting a null object.

In particular you can do something like this:

        seotitle: feature.seo ? feature.seo.title : '',
        seodesc: feature.seo ? feature.seo.description : '',

Or alternatively you can make the SEO attribute required and leave your script as it is. That depends on how you plan to do things.