Currently static hasMany = [tags: tag]
But I believe that you can store it directly as a string
questionInstance.tags = ['tag1', 'tag2',...]
Unlike
questionInstance.tags = [new Tag(name: tag1), new Tag(name: tag2),...]
I skipped the missing tags to show you what is meant. Hope this helps.
source share