Basic operators

Variable operators

Operators used to perform variable operations.


$let

Creates variables that are used during the evaluation of an expression, and returns the expression's outcome.

{
  "$let": {
    "vars": { "var": "any", "var": "any", "...": "..." },
    "in": "expression"
  }
}
expry({
  $let: {
    vars: { age: 24 },
    in: { isAdult: { $gte: ["$$age", 18] } },
  },
}); // { isAdult: true }