Mongodb query to select less than and equal based on custom comparator

542 Views Asked by At

I am using mongodb database and I need to run less than and equal filter based on custom comparator. Following is more details.

  1. "profile" collection is having "level" field as string

    {"name":"Test1", "level":"intermediate"}
    
  2. Following are value of level and its corresponding weight

    1. novice
    2. intermediate
    3. experienced
    4. advance
  3. I want to write query like as below so that it should return all the profile collection which level less than and equal to "experienced" (i.e. includes result for "novice", "intermediate" and "experienced"

    db.profile.find( { level: { $lte: "experienced" } } )
    

I understand, I need to provide custom comparator. But how can i do?

1

There are 1 best solutions below

1
On BEST ANSWER

You can't use custom comparators in a MongoDB Query. The ones available are: $eq, $gt, $gte, $lt, $lte, $ne, $in, $nin.

You can, however, use $in to get what you want:

db.profile.find( { level: { $in: [ "experienced", "intermediate ", "novice" ] } } );