Можем ли мы использовать 2 groupProperty в проекциях, как показано ниже. grauser - это поле объекта. правильный запрос внизу?
OnemonthList=TxnJan.createCriteria().list {
eq('graresource',resourceInstance)
between('currentdate', fromDate, toDate)
projections {
grauser {
countDistinct('id')
}
groupProperty('currentdate')
groupProperty('eventdesc')
order('currentdate', "asc")
}
}