-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Description
Hi,
sum(price)=gt=3 query generates following object:
{
name: 'and',
args: [
{ name: 'sumgt', args: [ [ 'price' ], 3 ] }
],
cache: {}
}Shouldn't it be like gt(sum(price),3)
{
name: 'and',
args: [{
name: 'gt',
args: [ { name: 'sum', args: [ 'price' ] }, 3 ]
} ],
cache: {}
}Or at least it may throw exception.
Best Regards,
Metadata
Metadata
Assignees
Labels
No labels