UNPKG

@nqminds/fin-genie-audit-period

Version:

A databot for extracting an audit's period for FinGenie

18 lines (15 loc) 264 B
/** * A pipeline for collecting the earliest & latest dates of * the GL in order to create a period */ module.exports = [ {$group: { _id: 0, min: {$min: "$pstDate"}, max: {$max: "$pstDate"}, }}, {$project: { min: 1, max: 1, }}, ];