Grails get child domain objects

The issue is with the use of default JSON converter. Here are your options: 1. Default – all fields, shallow associations a. render blah as JSON 2. Global deep converter – change all JSON converters to use deep association traversal a. grails.converters.json.default.deep = true 3. Named config marshaller using provided or custom converters a. JSON.createNamedConfig(‘deep’){ … Read more