ChasingClouds
01/21/2025, 3:03 PMqueries: [
{
table: "call",
groupBy: ["assistantId"],
name: "Call Analytics",
operations: [
{
operation: "count",
column: "id",
alias: "call_count"
},
{
operation: "sum",
column: "cost",
alias: "total_cost"
}
]
}
]
This gives nothing. Additionally, I want to find the number of calls from a particular assistantId. The groupBy "assistantId" is a readonly value. That is I cannot filter it according to any particular assistantId.