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

198
Views
Is there any way to simplify the content (one of the column retrieved from the mongodb data) by using monk?
var monk = require('monk'); var db = monk('127.0.0.1:27017/db');
    
var collection = db.get('content'); newscol.find({}, {}).then((data) => {console.log(data);})

Output:

[
    {
    _id: 1,
    content: 'a b c d e f g h i j k l m n o p q r s t u v w x y z ',
    },
    {
    _id: 2,
    content: 'b c d e f g h i j k l m n o p q r s t u v w x y z',
    },
    {
    _id: 3,
    content: 'c d e f g h i j k l m n o p q r s t u v w x y z',
    }
]

Tried to retrieve the data in a normal way.

But is there any way to retrieve only the first few words of the content as below?

[
    {
    _id: 1,
    content: 'a b c d...',
    },
    {
    _id: 2,
    content: 'b c d e...',
    },
    {
    _id: 3,
    content: 'c d e f....',
    }
]

I am trying to use the collection.aggregate but seems it doesn't help with the problem.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

db.collection.aggregate([
  {
    $set: {
      content: {
        $reduce: {
          input: { $slice: [ { $split: [ "$content", " " ] }, 4 ] },
          initialValue: "",
          in: {
            $concat: [
              "$$value",
              { $cond: [ { $eq: [ "$$value", "" ] }, "", " " ] },
              "$$this"
            ]
          }
        }
      }
    }
  }
])

mongoplayground

about 4 years ago · Juan Pablo Isaza 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!