Hi, I have a class :
class Category {
String name
SortedSet items
static hasMany = [items:Item]
}
Inside the controller, I render category as XML (converters) :
def getCategory = {
render Category.read(1) as XML
}
But I want exclude items from the rendering.
How can I do ?
Thanks