Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

166
Views
Mongoose Aggregation to array of arrays

I have a document structure like this:

{
  readings: [
    { t: 'temperature', r: 130 },
    { t: 'humidity', r: 100 }
  ],
  created_at: '2021-01-05T10:28:49.070Z'
},
{
  readings: [
    { t: 'temperature', r: 123 },
    { t: 'humidity', r: 456 }
  ],
  created_at: '2021-01-05T10:32:50.727Z'
}

I need to aggregate the documents for a particular reading type. For example, the result of aggregation for reading type with temperature should be like following:

[
  [130, '2021-01-05T10:28:49.070Z'],
  [123, '2021-01-05T10:32:50.727Z']
]

How can I do this with an aggregation pipeline or something?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You can't output an array of arrays from an aggregate pipe. But you can output an object with a single array field. Ie:

[
  {data: [130, '2021-01-05T10:28:49.070Z']},
  {data: [123, '2021-01-05T10:32:50.727Z']}
]

Here's a pipe that does just that https://mongoplayground.net/p/7UPyUICOncq

let result = await collection.aggregate([
    {$unwind: '$readings'},
    {$match: {
      'readings.t': 'temperature'
    }},
    {"$project": {
        _id: 0,
        data: ['$readings.r', '$created_at']
    }}
])

Then to reach your desired format just map the output

let formattedResult = result.map(({data}) => data)
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!