Uploaded image for project: 'C# Driver'
  1. C# Driver
  2. CSHARP-1608

Aggregation should have a $reverseArray expression.

    • Type: Icon: New Feature New Feature
    • Resolution: Done
    • Priority: Icon: Major - P3 Major - P3
    • 2.4
    • Affects Version/s: None
    • Component/s: Linq
    • Labels:
      None

      Syntax

      {$reverseArray: <expression which evaluates to an array>}
      

      Examples

      Input

      {_id: 0, a: [1, 2, 3]}
      

      Pipeline

      db.coll.aggregate([{
          $project: {
              reversed: {$reverseArray: "$a"}
          }
      }])
      

      Output

      {_id: 0, reversed: [3, 2, 1]}
      

      Additional Notes

      • Can be used in combination with $reduce to yield the equivalent of a $foldR.
      • Returns null if input is nullish.
      • Errors if input is not an array or nullish.

      Original Description

      Aggregation should support an $reverseArray expression, which accepts as input an expression that evaluates to an array, and outputs the reversed version of the array. Throws an error if the input is not an array or nullish.

            Assignee:
            craig.wilson@mongodb.com Craig Wilson
            Reporter:
            rathi.gnanasekaran Rathi Gnanasekaran
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: