Skip to content

Commit

Permalink
fix: add deals sum aggregate
Browse files Browse the repository at this point in the history
  • Loading branch information
alicanerdurmaz committed Aug 22, 2023
1 parent f660e32 commit 1979d25
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion examples/app-crm/src/routes/scrumboard/sales/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,17 @@ export const SalesPage = () => {
},
meta: {
operation: "dealStages",
fields: ["id", "title"],
fields: [
"id",
"title",
{
dealsAggregate: [
{
sum: ["value"],
},
],
},
],
},
});

Expand Down

0 comments on commit 1979d25

Please sign in to comment.