We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This query works fine:
$apply=groupby(mfs/ID, aggregate(mfs(im_foo with average as Value)))
But odata-query can't produce that nested 'mfs' part wrapped in the aggregate ()
I tried transform with array, or objects, and nothing can produce that string:
const transform = { groupBy: { properties: ['mfs/ID'], transform: { aggregate: [ 'mfs', { 'mfs/im_Jitter': { with: 'average', as: 'Value', }, 'mfs/im_Latench': { with: 'average', as: 'Value1', }, 'mfs/im_PacketLossPercentage': { with: 'average', as: 'Value2', }, }, ], }, }, };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This query works fine:
But odata-query can't produce that nested 'mfs' part wrapped in the aggregate ()
I tried transform with array, or objects, and nothing can produce that string:
The text was updated successfully, but these errors were encountered: