UNPKG

@teikei/api

Version:

Teikei API server. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.

10 lines (8 loc) 297 B
const addFilteredTotal = async ctx => { if (!ctx.params.skipFilteredTotal) { ctx.result.filteredTotal = ctx.result.total const count = await ctx.service.find({ query: { $limit: "0", }, skipFilteredTotal: true }) ctx.result.total = count.total } } export default addFilteredTotal