MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Aggregazione MongoDB per aggiungere i mesi mancanti tra due date dopo il raggruppamento nel campo della data

All'inizio pensavo che ciò potesse essere facilmente ottenuto tramite il codice, ma anche con MongoDB puoi farlo ma con un input dal codice:

Diciamo se il tuo fromDate è giugno 2018 e fino ad oggi è giugno-2019, quindi utilizzando il tuo linguaggio di programmazione puoi facilmente ottenere tutti i mesi tra queste due date in questo formato mm-aaaa . Puoi provare a farlo usando MongoDB ma preferirei come input per interrogare.

Query :

db.collection.aggregate([
    {
      $group: {
        _id: {
          date: {
            $dateToString: {
              format: "%m-%Y",
              date: "$reviewUpdatedAt"
            }
          },
          loc: "$branchId"
        },
        Total: {
          $sum: 1
        }
      }
    },
    {
      $group: {
        _id: "$_id.loc",
        reviews: {
          $push: {
            Total: "$Total",
            "date": "$_id.date"
          }
        }
      }
    },
    /** Overwrite existing reviews field with new array, So forming new array :: 
     * as you're passing all months between these dates get a difference of two arrays (input dates - existing dates after group)
     * while will leave us with an array of missing dates, we would iterate on that missing dates array &
     * concat actual reviews array with each missing date
     * */
    {
      $addFields: {
        reviews: {
          $reduce: {
            input: {
              $setDifference: [
                [
                  "06-2018",
                  "07-2018",
                  "08-2018",
                  "09-2018",
                  "10-2018",
                  "11-2018",
                  "12-2018",
                  "01-2019",
                  "02-2019",
                  "03-2019",
                  "04-2019",
                  "05-2019",
                  "06-2019"
                ],
                "$reviews.date"
              ]
            },
            initialValue: "$reviews",
            in: {
              $concatArrays: [
                "$$value",
                [
                  {
                    date: "$$this",
                    Total: 0
                  }
                ]
              ]
            }
          }
        }
      }
    }
  ])

Test : MongoDB-Playground

Rif: javascript-get-all-months-between-two -date