hi, how do i implement the aggregate/sum ?
# orm-help
s
hi, how do i implement the aggregate/sum ?
n
Hey Stephan 👋 aggregate/sum has been recently released as an experimental feature behind a feature flag. You can enable it as follows in your Prisma schema:
Copy code
generator client {
  provider = "prisma-client-js"
  experimentalFeatures = ["aggregateApi"]
}
You can find more info about the usage in the example in the release notes 🙂
👍 1
s
first of all - thank you second - ill check it out
😄 1
🦜 1