Hi Everyone,
Can someone please help me to understand from where I can find the code/logic behind "Distribution of values" option we have in query activity
Views
Replies
Total Likes
Hi Kapil,
This are usually all created using Input forms. You can find the code behind that in there. Go from Administration > Configuration > Input forms and search for Distribution of values form.
Thanks,
Views
Replies
Total Likes
Views
Replies
Total Likes
Hello @kapilKochar
In the backend the query is using GroupBy in the queryDef.
You can achieve the same result by adding groupBy attribute in your queryDef code.
Here is the same code:
select: {node:[ {alias: '@expr', expr: field, groupBy: 'true', noSqlBind: 'true'}, {alias: '@count', expr: 'COUNT()', label: 'Count'}, ]},
Let me know if that helps.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies