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

Come convertire le date in un array con $dateFromString?

Puoi utilizzare l'operatore di aggregazione $map per applicare $dateFromString a ciascun elemento dell'array:

db.test.aggregate([{
  "$project": {
    "ticker": 1,
    "currency": 1,
    "daily": {
      "$map": {
        "input": "$daily",
        "in": {
          "timestamp": { 
            "$dateFromString": {
              "dateString": '$$this.timestamp',
              "format":  '%Y-%m-%d'
            }
          },
          "open": "$$this.open",
          "high": "$$this.high",
          "low": "$$this.low",
          "close": "$$this.close",
          "volume": "$$this.volume"
        }
      }
    }
  }
}])