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
Hi,
buildTransforms method firstly takes "aggregate" value and pushes to the result and only after it takes "filter" value and pushes to the result.
For example, we have the following query object:
{ "transform": { "filter": [ { "project": "some value" } ], "aggregate": { "id": { "with": "countdistinct", "as": "count" } } } }
And result is: $apply=aggregate(id with countdistinct as count)/filter(project eq 'some value')
$apply=aggregate(id with countdistinct as count)/filter(project eq 'some value')
And it's a wrong expression because first of all, we have to apply filter transformation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
buildTransforms method firstly takes "aggregate" value and pushes to the result and only after it takes "filter" value and pushes to the result.
For example, we have the following query object:
And result is:
$apply=aggregate(id with countdistinct as count)/filter(project eq 'some value')
And it's a wrong expression because first of all, we have to apply filter transformation.
The text was updated successfully, but these errors were encountered: